1024programmer Linux How to decompress .tar files in linux-linux operation and maintenance

How to decompress .tar files in linux-linux operation and maintenance

How to decompress .tar files in Linux

1. Pack and compress

tar -cvf etc.tar /app/etc #package
 tar -zcvf pack.tar.gz pack/ #Pack and compress into a compressed package in .gz format
 tar -jcvf pack.tar.bz2 pack/ #Pack and compress into a compressed package in .bz2 format
 tar -Jcvf pack.tar.xz pack/ #Pack and compress into a compressed package in .xz format

2. Unpack and decompress

 tar -xvf pack.tar # unpack pack.tar file
 tar -zxvf pack.tar.gz /pack #Unpack and decompress the compressed package in .gz format to the pack folder
 tar -jxvf pack.tar.bz2 /pack #Unpack and decompress the compressed package in .bz2 format to the pack folder
 tar -Jxvf pack.tar.xz /pack #Unpack and decompress the compressed package in .xz format to the pack folder

Key explanation: the tar tool itself does not have the function of compression, and it can only be realized by combining the compression tool Better compression.

-j: bzip2

-z: gzip

-J: xz

-c: Packaging

-x: Unpacking

Recommended study: Linux video tutorial

The above is the detailed content of how to decompress .tar files in Linux, please pay attention to more 1024programmer.com Other related articles!

This article is from the internet and does not represent1024programmerPosition, please indicate the source when reprinting:https://www.1024programmer.com/how-to-decompress-tar-files-in-linux-linux-operation-and-maintenance/

author: admin

Previous article
Next article

Leave a Reply

Your email address will not be published. Required fields are marked *

Contact Us

Contact us

181-3619-1160

Online consultation: QQ交谈

E-mail: [email protected]

Working hours: Monday to Friday, 9:00-17:30, holidays off

Follow wechat
Scan wechat and follow us

Scan wechat and follow us

Follow Weibo
Back to top
首页
微信
电话
搜索