| Comando |
Descrizione |
|
# bunzip2 file1.bz2 |
decomprimere il file denominato 'file1.bz2' [man] |
|
# bzip2 file1 |
comprimere il file denominato 'file1' [man] |
|
# gunzip file1.gz |
decomprimere il file denominato 'file1.gz' [man] |
|
# gzip file1 |
comprimere il file denominato 'file1' [man] |
|
# gzip -9 file1 |
comprimere con la massima compressione [man] |
|
# rar a file1.rar test_file |
creare un archivio rar chiamato 'file1.rar' [man] |
|
# rar a file1.rar file1 file2 dir1 |
comprimere in rar simultaneamente 'file1', 'file2' e 'dir1' [man] |
|
# rar x file1.rar |
decomprimere un archivio rar [man] |
|
# tar -cvf archive.tar file1 |
creare un archivio tar non compresso [man] |
|
# tar -cvf archive.tar file1 file2 dir1 |
creare un archivio contenente 'file1', 'file2' e 'dir1' [man] |
|
# tar -tf archive.tar |
visualizzare il contenuto di un archivio [man] |
|
# tar -xvf archive.tar |
estrarre un archivio tar [man] |
|
# tar -xvf archive.tar -C /tmp |
estrarre un archivio tar dentro /tmp [man] |
|
# tar -cvfj archive.tar.bz2 dir1 |
creare un archivio tar compresso in bzip2 [man] |
|
# tar -xvfj archive.tar.bz2 |
decomprimere un archivio tar compresso in bzip2 [man] |
|
# tar -cvfz archive.tar.gz dir1 |
creare un archivio tar compresso in gzip [man] |
|
# tar -xvfz archive.tar.gz |
decomprimere un archivio tar compresso in gzip [man] |
|
# unrar x file1.rar |
decomprimere un archivio rar [man] |
|
# unzip file1.zip |
decomprimere un archivio zip [man] |
|
# zip file1.zip file1 |
creare un archivio compresso in zip [man] |
|
# zip -r file1.zip file1 file2 dir1 |
zippare più file e directory contemporaneamente [man] |