How to decompress files in linux

藏色散人
Release: 2019-11-12 09:26:14
Original
3935 people have browsed it

How to decompress files in linux

How to decompress files in Linux

Linux provides a very simple function to decompress *.zip files .

Decompression command: unzip filename.zip

Recommended: "Linux Tutorial"

How to decompress files in linux

Also available in Linux system There is a type of file with the suffix *.tar.

The decompression command is: tar -xvf filename.tar.

How to decompress files in linux

The decompression command is: bzip2 -d filename.bz2

How to decompress files in linux

1. Use tar –xvf to decompress *.tar. 2. Decompress *.gz with gzip -d or gunzip. 3. Decompress *.tar.gz and *.tgz with tar –xzf. 4. Use *.bz2. bzip2 -d or use bunzip2 to decompress 5. *.tar.bz2 uses tar –xjf to decompress 6. *.Z uses uncompress to decompress 7. *.tar.Z uses tar –xZf to decompress 8. *.rar uses unrar e to decompress 9. *.zip Use unzip to decompress

The above is the detailed content of How to decompress files in linux. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template