ACPI administration advocacy advocacy advocacy opinion alsa amarok apache apple apt aptitude audio audo authentication automount avi awk bash BIOS boot business cache calendar calibre cdr cdrecord censorship commandline computerscience console convert cron cut database date debian degree design desktop development disk dpkg dvd economics education emacs email europe exim faad ffmpeg file files firefox firewall flash foss freedom ftp fun fuse git gnumeric graphics grep growisofs grub gtkpod hardware hardware html idiocy image imagemagick images installation ip iphone ipod iptables iso itunes ivman kde kernel keyboard knoppix lame laptop latex linux locale lockin longlines m4a microsoft mimetypes minitab mount mp3 mp4 mplayer multimedia music mysql network nfs nfs4 nmap openbox openoffice opinion opinion partition pdf perl php politics postgresql printing privacy programming rant remote rhythmbox rss rsync rxvt scp screengrab screenshot script scripting scsi security sed server shell siteadmin sitenews sitesoftware skype skype slackware sound sox spam spreadsheet ssh statistics subversion sudo svk swap t23 t43 terminal text thinkpad thunderbird time timezone ubuntu udev upgrade usb usbmount users uuid versioncontrol vfat video vnc windows wine wordpress wordprocessing X40 xwindows xwindows youtube
These days much stuff is stored in mysql databases and it is therefore quite important to back it all up regularly. The added bonus of this is because I'm still trying to get my head around shell scripting I looked around the internet to find a script.
I found a very simple one here. I've modified it slightly to store the various databases in their own directories:
#!/bin/bash
for DB in `mysql -B -e "show databases" | tail +2`; do
DIR=/mnt/backup/mysql/$DB/
mkdir -p $DIR
mysqldump --opt $DB | bzip2 -c -9 > $DIR$DB.`date --iso-8601`.bz2
done
The other modification I've made is to use bzip2 rather than gzip because of the better compression acheived. The script is run as a cron job.
On a slightly different point, one interesting script I found backed up mysql databases to gmail. The script is here