rsync boot disk dirs to exclude
I've installed Fedora 22 to my boot hard disk, which is assigned device=sda. It has the following directory structure:
.autorelabel, bin, boot, .config, dev, etc, home, lib, lib32, lib64, lost+found, media, mnt, opt, proc, root, run, sbin, srv, sys, tmp, usr, var
I've also installed Fedora 22 to an external (hard disk) docking station, which is assigned device=sdc. I plan to periodically use rsync to maintain device=sdc. My tentative list of directories to exclude is:
/dev, /home, /media, /mnt, /proc, /run/media, /sys, /tmp, /var/lock, /var/run
/home is excluded because I rsync it separately. Ideally, device=sdc simulates a clone of device=sda. As a fairly inexperienced Linux user, I request discussion of directories to exclude.
Whatever backup solution/method you choose, from the list in your question...
Include:
Exclude:
Some people also backup a list of installed packages to speed up the restore process. Just search the net a little bit on backup methods for Linux. There is plenty of information. Regarding sync , you start here: https://wiki.archlinux.org/index.php/...
To me, it's not clear what you want to achieve? A full backup of your harddrive in case your main one goes bad? Or just a backup of the important things in case you need/want to reinstall your OS? For the latter, backing up /home including all hidden .files and .folders (!) is sufficient, adding /etc to the backup can be useful too. (Servers need more backup!)
Check out this one here too!