Voglio comprimere i file in .tgz. So come fare tar.gz (con tar e gzip) e alcune persone dicono che è quasi lo stesso, ma devo fare un .tgz, come ??
Voglio comprimere i file in .tgz. So come fare tar.gz (con tar e gzip) e alcune persone dicono che è quasi lo stesso, ma devo fare un .tgz, come ??
Risposte:
Un file tar.gz e un file .tgz sono simili.
Comprimi i file usando tar:
tar -cvzf <name of tarball>.tgz /path/to/source/folder
ad esempio, voglio creare una backup.tgz
o backup.tar.gz
dalla cartella/home/user/project
tar -cvzf backup.tgz /home/user/project
tar -cvzf backup.tar.gz /home/user/project
Puoi usare anche al tar cvzf
posto di tar -cvzf
.
Estrai i file .tgz o .tar.gz usando tar
tar -xvzf backup.tgz
tar -xvzf backup.tar.gz
Mnemonico per compressione (l'ordine delle bandiere non ha importanza)
Mnemonico per estrazione (l'ordine delle bandiere non ha importanza)
c
è meglio ricordarlo come create, ed z
è ricordato come compressione, come in z
from z lib, g z ip, z ip. Un mnemonico migliore sarebbe C reate Z ipped F ile.
È lo stesso. Rinomina il file da file.tar.gz
a file.tgz
.
mv file.tar.gz file.tgz
. Ovvio, ma degno di nota