code

Suche

Unten sind die Ergebnisse Ihrer Suche gelistet.

Linux backup with tar
16 Treffer, Zuletzt geändert:
ed up with "tar". You simply create an archive: <code bash> tar -cpvlf meinArchiv.tar /Pfad/zu/meinen/Originalen </code> An archive is now created with the following bu... could now compress the archive, e.g. with gzip: <code bash> gzip meinArchiv.tar </code> ===== md5sum ===== Before you download the file from a web server,
Linux backup with rsync
8 Treffer, Zuletzt geändert:
of the backup, you will have various versions. <code bash> rsync -av <quelle> <ziel> </code> creates a copy of <quelle> in <ziel>. After a 2nd call, only t... can create a hard link to the target directory: <code bash> cp -al <ziel> <backup_alt> </code> ===== Info ===== A hard link is a reference to a file. A fil