XZ Compression Tutorial

29/12/2020
Many built-in command-line compression tools are available in Linux operating system. XZ is one of the popular data compression tools that works like any other standard compression tools, such as gzip, bzip2 etc. XZ command compresses and decompresses the file which is mentioned in the command with XZ. If any file name is not mentioned in the XZ command then the command reads data from standard input and after processing the data, write the data in standard output. XZ can compress or decompress one or more files at a time. Normally it removes the original file after compression and removes decompressed file after decompression. You can keep both compressed and uncompressed files by using some options. How you can use XZ command for compressing and decompressing file is shown in this tutorial.

Run the following command to find out the options of XZ command.

$ xz –help

Select some files that you want to test xz command. Here, the files of myDir folder are used for compressing and decompressing with xz command. Run ls -l command to show the list of files with detail information.

$ ls -l

Compress single file

You can compress any simple file by giving the file name with xz command. After compression, xz command deletes the original file. Here, b1.sh file is compressed and created the compressed file named b1.sh.xz.

$ xz b1.sh
$ ls -l

Compress multiple files

You can compress multiple files using xz command by separating each file with space. Here, two compressed files, loop2.sh.xz and myfile.txt.xz are created after deleting loop2.sh and myfile.txt.

$ xz loop2.sh myfile.txt
$ ls -l

Compress file by keeping original file

If you want to keep original file with compress file then run xz command with –k option. Here, comment2.sh.xz file is created without removing comment3.sh file.

$ xz -k comment3.sh
$ ls -l

Decompress file

Like compression, when you decompress any file with xz command then it delete decompressed file after

decompression.  Here, b1.sh file is created after decompressing b1.sh.xz file. –d option is used with xz command to decompress any compressed file.

$ xz -d b1.sh.xz
$ ls -l

Decompress file by keeping compressed file

You have to use –k option with unxz command to keep the decompressed file with original file after decompression. After running the following command, loop2.sh.xz file will not be removed.

$ unxz -k loop2.sh.xz
$ ls -l

Compress multiple file in a single file

If you want to create single compression file for multiple files then you need to use –c option. The following command will create new.xz compressed file after compressing b1.sh and FirstJava.class files.

$ xz -c b1.sh FirstJava.class > new.xz
$ ls -l

Retrieve information of compressed file

You can retrieve information of any compressed file by using –l option. Here, new.xz file is created by compressing two files. The following information shows that the original size of both files is 604 bytes and after compression the size is 548 bytes.  You can decompress this file by using previous decompression options.

$ xz -l new.xz

One of the major limitation of xz compression tool is that it can compress file only. You can’t compress any folder by using xz. This tool can’t also be used for creating password protected compressed file. There are other tools on Linux to create password protected compressed file. One of them is rar package. You can easily install trial version of rar package on Linux to create and open archive files. You can read the tutorial on rar package from the following link.

ONET IDC thành lập vào năm 2012, là công ty chuyên nghiệp tại Việt Nam trong lĩnh vực cung cấp dịch vụ Hosting, VPS, máy chủ vật lý, dịch vụ Firewall Anti DDoS, SSL… Với 10 năm xây dựng và phát triển, ứng dụng nhiều công nghệ hiện đại, ONET IDC đã giúp hàng ngàn khách hàng tin tưởng lựa chọn, mang lại sự ổn định tuyệt đối cho website của khách hàng để thúc đẩy việc kinh doanh đạt được hiệu quả và thành công.
Bài viết liên quan

Change to Cinnamon Desktop on OpenSUSE

Cinnamon is one of the top-tier desktop environments for Linux. It’s a free and open-source desktop environment derived...
29/12/2020

Best Self-Hosted Learning Management Systems (LMS)

Prior to the digital era, classes were restricted to lectures whose availability to the general public ranged from okay...
28/12/2020

How to install the Elegant Simple Weather Indicator 0.9 for Linux

Simple Weather Indicator 0.9 recently released, is an elegant and very simple weather indicator for Ubuntu unity and Gnome...
28/12/2020
Bài Viết

Bài Viết Mới Cập Nhật

Dịch Vụ Xây Dựng Hệ Thống Peering Với Internet Exchange (IXP)
04/04/2025

Dịch Vụ Triển Khai VPN Site-to-Site & Remote Access
04/04/2025

Dịch Vụ Thiết Lập Hệ Thống Tường Lửa (Firewall)
04/04/2025

Dịch Vụ Triển Khai Hệ Thống Ảo Hóa & Cloud
04/04/2025

Dịch Vụ Triển Khai Hệ Thống Ceph
04/04/2025