Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

What is the command for packing and decompressing packages under Linux?

2025-11-08 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Development >

Share

Shulou(Shulou.com)06/01 Report--

This article mainly introduces what is the command for packing and decompressing packages under Linux, which has a certain reference value, and interested friends can refer to it. I hope you will gain a lot after reading this article.

Commands for establishing and decompressing packages under Linux

Tar.gz:

Packaging: tar czf file.tar.gz file.txt

Decompress: tar xzf file.tar.gz

Bz2:

Packaging: bzip2 [- k] files

Extract: bunzip2 [- k] file

Gzip (for files only, do not keep the original files)

Packaging: gzip file1.txt

Decompress: gunzip file1.txt.gz

Zip:-r pair directory

Packaging: zip file1.zip file1.txt

Decompress: unzip file1.zip

Thank you for reading this article carefully. I hope the article "what are the orders for packing and decompressing packages under Linux" shared by the editor will be helpful to everyone. At the same time, I also hope that you will support us and pay attention to the industry information channel. More related knowledge is waiting for you to learn!

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Development

  • How to create a custom layout using Android AS

    How to use Android AS to create a custom layout, for this problem, this article introduces the corresponding analysis and solutions in detail, hoping to help more partners who want to solve this problem to find a more simple and easy way. First create a title.xml

    12
    Report