Unpack
From S23Wiki
How to unpack compressed files with the various different extentions.
Contents |
[edit] .tar.gz
To uncompress a .tar.gz file, execute the following command:
tar -xzfv filename.tar.gz
[edit] .gz
To uncompress a gzip file, execute the following command:
gunzip filename.txt.gz
[edit] .tar
To uncompress a tar file, execute the following command:
tar -xvf example.tar
[edit] streaming tar to another server
[edit] .bz2
To uncompress a bzip2 file, execute the following command: bunzip2 filename.txt.bz2
[edit] .zip
To uncompress a zip file , execut the following command:
unzip filename.zip
[edit] Related
Softcoder-Board: packen mit tar (und gz)
Categories: Linux | Computer | HowTo

