[gzip bzip2 unzip tar unrar] Empaquetar y comprimir archivos y/o directorios.
$ tar -cf archivo.tar dir
$ tar -xf archivo.tar
$ tar -tf archivo.tar
$ tar -cf archivo.tar.gz dir
$ tar -xf archive.tar.gz
$ tar -cf archivo.tgz dir
$ tar -xf archivo.tgz
$ tar -tf archivo.tgz
$ tar -cf archive.xz dir
$ tar -xf archive.xz
$ tar -cf archivo.tbz dir
$ tar -xf archivo.tbz
$ tar -tf archivo.tbz
$ tar -cf archivo.tar.bz2 dir
$ tar -xf archivo.tar.bz2
Opciones:
-z (Comprimir/descomprimir usando gzip)
-c (Crear un nuevo archivo)
-v (mostrar proceso)
-f (archivo (nombre de archivo)
-x (extraer el contenido del archivo comprimido)
-t (listar contenido de un archivo)
-j (comprimir/descomprimir con bzip2)
Otros casos:
$ tar -cf - file/ | gpg -c > file.cript
$ tar -c ficheros | bzip2 > archivo.tar.bz2
$ tar -cvzf archivo.tar.gz /home/usuario --exclude=videos
$ tar -cvfz archivo.tgz --exclude="home/usuario/Descargas" /home/usuario/*
$ tar -cvzf archivo.tar.gz –exclude={*.iso,videos} /home/usuario
$ tar -jxf archivo.tbz -C /tmp
$ tar -cvfz archivo.tgz --exclude="home/usuario/Descargas" --exclude=”home/usuario/videos /home/usuario/*
$ tar -czf - Images | ssh 192.168.1.15 'cat > ~/Images.tar.tgz'