@AnGSt hat deine ubuntu installation gzip mit dabei (hmm, also ich bin kein ubuntu user, aber bisher hatte ich bis auf wenige minimal-distris noch keine distri gesehehn die kein gzip mit dabei hatte)
eventuell liegt es auch daran, dass du innerhalb des home verzeichnisses bist
und dort würde dann von tar ein home.tar verzeichnis angelegt werden und dies eventuell wieder mitgesichert werden <-- ich vermute mal da wird tar wohl irgendwie abblocken ... hmm ist aber nur so eine vermutung von mir....
also jedenfalls sehe ich in:
AnGSt schrieb:sudo tar -cSpv --atime-preserve -f /media/save/home.tar
nichts vom ausschließen ... aber der parameter "S" ist mir atm unbekannt
;) ...
ehrm ja, hier ein beispiel wie man "/ "sichert und das gesichernte archiv aus der sicherung auslässt:
The following is an exemplary command of how to archive your system.
tar -cvpzf backup.tar.gz --exclude=/backup.tar.gz --one-file-system /
quelle:
https://help.ubuntu.com/community/BackupYourSystem/TARhier die erklärung zu den zusätzlichen parametern:
To understand what is going on, we will dissect each part of the command.
tar - is the command that creates the archive. It is modified by each letter immediately following, each is explained bellow.
c - create a new backup archive.
v - verbose mode, tar will print what it's doing to the screen.
p - preserves the permissions of the files put in the archive for restoration later.
z - compress the backup file with 'gzip' to make it smaller.
f <filename> - specifies where to store the backup, backup.tar.gz is the filename used in this example. It will be stored in the current working directory, the one you set when you used the cd command.
--exclude=/example/path - The options following this model instruct tar what directories NOT to backup. We don't want to backup everything since some directories aren't very useful to include. The first exclusion rule directs tar not to back itself up, this is important to avoid errors during the operation.
--one-file-system - Do not include files on a different filesystem. If you want other filesystems, such as a /home partition, or external media mounted in /media backed up, you either need to back them up separately, or omit this flag. If you do omit this flag, you will need to add several more --exclude= arguments to avoid filesystems you do not want. These would be /proc, /sys, /mnt, /media, /run and /dev directories in root. /proc and /sys are virtual filesystems that provide windows into variables of the running kernel, so you do not want to try and backup or restore them. /dev is a tmpfs whose contents are created and deleted dynamically by udev, so you also do not want to backup or restore it. Likewise, /run is a tmpfs that holds variables about the running system that do not need backed up.
quelle:
https://help.ubuntu.com/community/BackupYourSystem/TARalso das mit dem --one-file-system kann eventuell sinnvoll sein, falls du auf deinem desktop irgendwelche windows dateisysteme gemounted hast (z.b. /etc/fstab oder /etc/mtab einträge die auf /home/user/Desktop verweisen ....) oder sonstige usb-sticks etc <-- halt etwas mit einem anderen dateisystem...
falls du mounts / ordner (soweit ich weiß auch symbolische links) remounted hast ist es empfehlenswert diese mit mehreren --exclude=/ordner-oder-dateiangabe argumenten aus dem archiv auszuschließen....
naja, falls du kein gzip hast, einfach den parameter "z" weglassen...
das beispiel sollte ziemlich einfach auf deinen homepath anwendbar sein...
wenn nicht, es gibt auch noch andere how-to's ...
btw, hier:
http://mylinuxramblings.wordpress.com/2010/01/10/how-to-backup-and-restore-your-home-directory/aber das finde ich persönlich nicht so gut ...
das war jetzt mal auf die schnelle ... ich mach mich gleich mal auf die suche nach deutschsprachigen how-to's
;)