Mailman et postfix

A force de chercher des techniques pour configurer Mailman et postfix, mais surtout avoir une gestion automatique des alias, j’ai trouvé la méthode suivante : dans le master.cf j’ajoute un transport mailman unix – n n – – pipe flags=FR user=list argv=/usr/lib/mailman/bin/postfix-to-mailman.py ${nexthop} ${user} dans le main.cf recipient_delimiter = + son usage va permettre des […]

Collectd, monitorer mysql

coté collectd Host « localhost » User « collectd » Password « Secrets of the Universe with Philo » Database « mysql » # MasterStats true coté Ligne de commande mysql -u root mysql> CREATE USER ‘collectd’@’localhost’ IDENTIFIED BY ‘password’; mysql> GRANT SELECT, PROCESS, SHOW DATABASES, SUPER ON *.* TO ‘collectd’@’localhost’; mysql> FLUSH PRIVILEGES;

Managing MySQL with Percona Toolkit by Frédéric Descamps | Colin Charles Agenda

Managing MySQL with Percona Toolkit by Frédéric DescampsPosted on 5/2/2012, 10:58 am, by Colin Charles, under MySQL.Frédéric Descamps of Percona.Percona Toolkit is Maatkit & Aspersa combined. Opensource and the tools are very useful for a DBA.You need Perl, DBI, DBD::mysql, Term::ReadKey. Most tools are written in Perl, and whatever is in Bash is being re-written […]

/dev/doug – moving to BTRFS

moving to BTRFSI’ve been following the development of btrfs for some time now eagerly awaiting its graduation from experimental status in the kernel. While it is still labeled as experimental in the kernel, the on-disk format has been finalized so I decided to take the plunge.I decided to convert my main system, which is a […]

iocube loader, php 5.3 sous debian

Sous debian 64 bits mkdir /home/tmpioncube cd /home/tmpioncube wget http://downloads2.ioncube.com/loader_downloads/ioncube_loaders_lin_x86-64.tar.gz && tar -zxf ioncube_loaders_lin_x86-64.tar.gz && cd ioncube && cp ioncube_loader_lin_5.3.so /usr/lib64/php5/ echo « zend_extension=/usr/lib64/php5/ioncube_loader_lin_5.3.so » > /etc/php5/conf.d/ioncube-loader.ini et sa roule

Introduction to SVN : importing a new project | Sébastien Wains

Create a new repository : $ svnadmin create –fs-type fsfs /home/user/svn Suppose you have an existing project you wish to import in SVN : $ svn import /path/to/project/ file:///home/user/svn/project -m ‘Initial import’ Checking out your project : $ svn checkout file:///home/user/svn/project /home/user/dev/project A version controlled copy of the project is now available under /home/user/dev/project/ You […]

Varnish , un de plus

Bon toujours dans l’idée que l’on peut améliorer la vitesse d’un site, pour faire plaisir à M Google entre autre, Je me lance dans varnish . Donc Debian squeeze pour ne pas changer : Ajout du dépot de la 3.0 dans l’apt sources deb http://repo.varnish-cache.org/debian/ squeeze varnish-3.0 aptitude update, aptitude upgrade et aptitude install varnish […]

Ubuntu: How to Force a Silent Cron | The Rugged Rock of Craig

Ubuntu: How to Force a Silent Cron Posted on Tuesday, January 4, 2011 by Craig Lotter By default, cron actions that produce output generates emails that get sent to the system administrator. If we don’t particularly want this behaviour, we need to terminate our function calls with a specific character sequence, which looks as follows: […]

Faire image d’un linux pour installer sur une SDcard ou une clé USB

En ce moment je bidouille avec des clés USB ou des SDcards pour booter des PCs basse conso . Du coup au lieu d’attendre très longtemps que ça s’installer en mode classique, je prépare mes images disques depuis mon poste de travail comme ceci : 1 dd if=/dev/zero of=sdcard.raw bs=1024 count=1048576 ( 1Go *1024 ) […]

Renvoyer en traitement le contenu d’une mbox linux

formail -s /usr/sbin/sendmail -v -t -oiee < nom de la mbox ( Souvent dans /var/spool/mail )