Category Archives: Debian
Disable bell GNU/Linux and FreeBSD
Global disable on Linux You just have to remove the pcspkr module. Temporary remove on all Linux distributions : # rmmod pcspkr Complete remove on Debian and derivate (Ubuntu, Mepsis, …) : # echo "blacklist pcspkr" >> /etc/modprobe.d/blacklist Turn off … Continue reading
Tips : Debian unstable (sid) switch to Python 2.4 by default
Edit /usr/share/python/debian_defaults You should have something like this : [DEFAULT] # the default python version default-version = python2.4 # all supported python versions supported-versions = python2.4, python2.5 # formerly supported python versions old-versions = python2.3 # unsupported versions, including older … Continue reading
Configure Mailman on Debian Etch with a Postfix
Install a Mailman with a Postfix on Debian apt-get install postfix mailman Configure Mailman Add or change these lines in /etc/mailman/mm_cfg.py (example vhost : lists.example.net) : DEFAULT_EMAIL_HOST = ‘lists.example.net’ DEFAULT_URL_HOST = ‘lists.example.net’ DEFAULT_URL_PATTERN = ‘http://%s/’ Configure Postfix Example with (domain … Continue reading
Your manfiles in color
You can use most to replace less or more to read your man with colors. To do this on Debian it’s easy : # apt-get install most # update-alternatives –config pager Then test it : $ man man Enjoy !