Difference between revisions of "Unpack"

From Linuxintro
imported>ThorstenStaerk
imported>ThorstenStaerk
 
(5 intermediate revisions by the same user not shown)
Line 1: Line 1:
 
To unpack files under Linux, you need to know what file format your file is. Frequently used are the .zip, .tar and .tar.gz formats.
 
To unpack files under Linux, you need to know what file format your file is. Frequently used are the .zip, .tar and .tar.gz formats.
* .rar
+
 
* .sda
 
 
If you want to be sure about the file format, [[open a console]] and use the file command like this:
 
If you want to be sure about the file format, [[open a console]] and use the file command like this:
 
  # file Blue-1.7.tar
 
  # file Blue-1.7.tar
Line 7: Line 6:
  
 
Here are file formats and how to unpack them:
 
Here are file formats and how to unpack them:
* .bz2 : bunzip2 ''file''.bz2
+
 
* .tar : tar xvf ''file''.tar
+
{| class="wikitable sortable" border=1
* .tar.gz : tar xvzf ''file''.tar
+
! extension !! type !! how to extract
* .tgz : tar xvzf ''file''.tgz
+
|-
* .zip : unzip ''file''.zip
+
| .7z || 7zip || install 7z, e.g. for SUSE Linux: yast -i p7zip; run it: 7z x ''file.7z''
 +
|-
 +
| .bz2 || bunzip2 || bunzip2 ''file''.bz2
 +
|-
 +
| .rar || rar    ||  unrar x ''file''.rar
 +
|-
 +
| .sda || ? || unzip ''file''.sda
 +
|-
 +
| .tar || tar archive ||  tar xvf ''file''.tar
 +
|-
 +
| .tar.gz || gzipped tar archive || tar xvzf ''file''.tar
 +
|-
 +
| .tgz || gzipped tar archive || tar xvzf ''file''.tgz
 +
|-
 +
| .zip || zip archive || unzip ''file''.zip
 +
|-
 +
| .zipx || new WinZip archive || See [[unpack .zipx files]]
 +
|}
 +
 
 +
= See also =
 +
* [[open files]]

Latest revision as of 07:06, 17 August 2014

To unpack files under Linux, you need to know what file format your file is. Frequently used are the .zip, .tar and .tar.gz formats.

If you want to be sure about the file format, open a console and use the file command like this:

# file Blue-1.7.tar
Blue-1.7.tar: POSIX tar archive (GNU)

Here are file formats and how to unpack them:

extension type how to extract
.7z 7zip install 7z, e.g. for SUSE Linux: yast -i p7zip; run it: 7z x file.7z
.bz2 bunzip2 bunzip2 file.bz2
.rar rar unrar x file.rar
.sda ? unzip file.sda
.tar tar archive tar xvf file.tar
.tar.gz gzipped tar archive tar xvzf file.tar
.tgz gzipped tar archive tar xvzf file.tgz
.zip zip archive unzip file.zip
.zipx new WinZip archive See unpack .zipx files

See also