La commande GNU/Linux historique tar permet d'archiver tout ou partie d'un système de type UNIX. Par défaut l'archive créée n'est pas compressée, mais un logiciel de compression peut y être associé en vue de réduire la taille des archives générées.
user@host $ tar -tz -f archive.tar.gz
user@host $ tar -xzvf archive.tar.gz -C /tmp/un_dossier
user@host $ tar -xzvf archive.tar.gz "./arch/fichier01" "./arch/fichier02"
root@host:~# apt-get install lzip
user@host $ tar --lzip -cvf archive.tar.lz /a/folder/*
user@host $ tar -cvf archive.tar /a/folder/*
user@host $ tar -czvf archive.tar.gz /a/folder/*
root@host~# tar cpjf backup.tgz /etc /var/log
root@host~# tar -jcvf - /my/fodler/ | ssh root@10.0.0.124 "cat > /backup/$(date +%Y.%m.%d)_backup.tgz"
root@host~# tar cvzf /$(date +%Y.%m.%d)_backup.tar.gz --exclude=/$(date +%Y.%m.%d)_backup.tar.gz --exclude=/dev --exclude=/mnt --exclude=/proc --exclude=/run --exclude=/sys --exclude=/tmp --exclude=/media --exclude=/lost+found /
Contact :