How to decompress tar.gz in linux: first open the terminal command window; then enter and execute the command “tar -zxvf compressed file name.tar.gz” to decompress tar.gz to the specified folder.
Recommendation: “Linux Tutorial”
*.tar.gz file decompression command under Linux
1. Compression command:
Command format: tar -zcvf compressed file name.tar.gz compressed file name
You can switch to the current directory first. Both the compressed file name and the compressed file name can be added to the path.
2. Decompression command:
Command format: tar -zxvf compressed file name.tar.gz
After decompression The files can only be placed in the current directory.
The above is the detailed content of how to decompress tar.gz in Linux, please pay attention to other related articles on 1024programmer.com for more information!