centos 7z 安装和基本操作方法,压缩和解压


在 CentOS 系统中安装 7z,可以按照以下步骤进行:

安装依赖包:

yum install p7zip p7zip-plugins

如果是debian则:

sudo apt install p7zip-full

使用 7z 进行压缩:

7z a archive.7z file1 file2...

其中 archive.7z 是要创建的压缩文件的名称,file1、file2 等是要压缩的文件或文件夹。

进行解压:

7z x archive.7z

其中 archive.7z 是要解压的文件。

如果是debian,可以使用如下命令:

sudo apt-get update
sudo apt-get install p7zip-full

mac 解压rar可以使用tar:

In Terminal, type:
tar -xf archive.rar

If you want it verbose:
tar -xvf archive.rar


原文链接:https://blog.yongit.com/note/1573072.html