Email boot log at startup in Ubuntu with bootmail

Posted by & filed under Linux.

I’ve been searching for a way to save the output of the console when my Linux system boots up because I can’t spot errors fast enough at startup and I don’t notice errors on headless (no monitor) servers. This shows a list of useful Linux log files, and I believe messages printed to the console… Read more »

Install and update multiple Linux distros using NetbootCD

Posted by & filed under Linux.

This post on lifehacker introduced me to NetbootCD, a live CD that allows me to install the latest version of popular Linux Distros (e.g, Ubuntu, Debian, CentOS, etc.) using a single live cd or usb drive. The latest version of the chosen OS is installed over the network. This will save me lots of time… Read more »

Automatically start Asterisk at boot time

Posted by & filed under Networking, VoIP.

Learned how to do so from this thread. cd ~/Downloads/asterisk/1.8/contrib/init.d ## contrib folder is in source directory sudo cp rc.debian.asterisk /etc/init.d/asterisk sudo chmod 755 /etc/init.d/asterisk # to set the script as boot update-rc.d asterisk defaults # to remove the script from boot update-rc.d -f asterisk remove Modify the /etc/init.d/asterisk: # Full path to asterisk binary… Read more »