Tag Archives: backup

Backing up your Linux home directory in a flash

This is a quick and dirty method of backing up each and every directory that you have in your home folder. Most of you would probably know this anyway, but I thought I might just repost it here.
tar cvpf backup.tar `ls`
Perhaps a better way is to create an incremental backup each time.
tar cvpf backup.tar -g [...]

Read more
Page 1 of 1 1