[>a2415.html>] [<a2413.html<] [^a2.html^]


Capitolo 327.   La compressione - *.gz *.bz2 *.zip

327.1   Compressione file

Come comprimo un file?

---------

Con:

$ gzip file[Invio]

327.2   File .gz

Cosa è un file .gz?

---------

è un file compresso con gzip e si decomprime con:

$ gzip -d file[Invio]

oppure con:

$ gunzip file[Invio]

327.3   file tar.bz2

Ho trovato su un CD un file *.tar.bz2. Come faccio a decomprimerlo?

---------

Con bzip2:

$ bzip2 -d nomefile.tar.bz2 ; tar -xvf nomefile.tar[Invio]

o:

$ tar -xIvf nomefile.tar.bz2[Invio]

LDR --- Copyright © 1999-2000 Gaetano Paolone --  bigpaul @ pluto.linux.it

[>a2415.html>] [<a2413.html<] [^a2.html^]