https://www.xmodulo.com/install-7zip-linux.html

sudo apt-get install p7zip-full p7zip-rar

 https://askubuntu.com/questions/348173/how-to-install-7zip-to-extract-rar-files

2

Use the following command to Install 7Zip:

$ sudo apt-get install p7zip-full

Extract files using 7zip:

$ 7z e example.zip

(Or use the x option instead of e to preserve file paths).

Compress files using 7zip:

$ 7z a compress.zip

 

 

 

 

######################################################################################################################33

 

Ubuntu 16.04安装7zip

 

搜索时发现7zip有两个:p7zip,p7zip-full,p7zip-rar。研究发现:

p7zip:包含7zr(最小的7zip归档工具),仅仅只能处理原生的7z格式。

p7zip-full:包含7z,支持7z、LZMA2、XZ、ZIP、CAB、GZIP、BZIP2、ARJ、TAR、CPIO、RPM、ISO和DEB格式。

p7zip-rar:包含一个能解压RAR文件的插件。

建议安装p7zip-full包(不是p7zip),因为这是最完全的7zip程序包,它支持很多归档格式。此外,如果想处理RAR文件话,还需要安装p7zip-rar包,做成一个独立的插件包的原因是因为RAR是一种专有格式。当然也可以三者都装。

安装:

sudo apt-get install p7zip-rar
sudo apt-get install p7zip-full
sudo apt-get install p7zip

使用:

直接命令行,或者压缩包右键->压缩/解压

ubuntu解压命令全览(rar)Ubuntu 16.04安装7zip_zip

很遗憾,没有GUI界面,只是扩充了系统工具,比如上面的7z格式。

更多实用功能只能使用命令行。

 

参考:

http://www.xitongzhijia.net/xtjc/20150210/37977.html

https://askubuntu.com/questions/369851/missing-gui-application-for-7-zip

https://www.howtoforge.com/tutorial/how-to-install-and-use-7zip-file-archiver-on-ubuntu-linux/

https://www.ruinelli.ch/p7zip-gui-for-linux(这里有个GUI,但是没安装成功,可以去尝试)

 

#####################################################################################################################

 

Ubuntu下解压rar文件的方法

2010-05-13 12:47

一般通过默认安装的ubuntu是不能解压rar文件的,只有在安装了rar解压工具之后,才可以解压。其实在ubuntu下安装rar解压工具是非常简单的,只需要两个步骤就可以迅速搞定。

ubuntu 下rar解压工具安装方法:

压缩功能

安装 sudo apt-get install rar
卸载 sudo apt-get remove rar

解压功能

安装 sudo apt-get install unrar
卸载 sudo apt-get remove unrar



ubuntu解压命令全览

.tar

解包:tar xvf FileName.tar

打包:tar cvf FileName.tar DirName

注:tar是打包,不是压缩!

~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~

.gz

解压1:gunzip FileName.gz

解压2:gzip -d FileName.gz

压缩:gzip FileName

~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~

.tar.gz 和 .tgz

解压:tar zxvf FileName.tar.gz

压缩:tar zcvf FileName.tar.gz DirName

~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~

.bz2

解压1:bzip2 -d FileName.bz2

解压2:bunzip2 FileName.bz2

压缩: bzip2 -z FileName

~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~

.tar.bz2

解压:tar jxvf FileName.tar.bz2

压缩:tar jcvf FileName.tar.bz2 DirName

~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~

.bz

解压1:bzip2 -d FileName.bz

解压2:bunzip2 FileName.bz

压缩:未知

.tar.bz

解压:tar jxvf FileName.tar.bz

压缩:未知

~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~

.Z

解压:uncompress FileName.Z

压缩:compress FileName

.tar.Z

解压:tar Zxvf FileName.tar.Z

压缩:tar Zcvf FileName.tar.Z DirName

~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~

.zip

解压:unzip FileName.zip

压缩:zip FileName.zip DirName

 

保留软链接压缩:zip -ry FileName.zip DirName

~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~

.rar

解压:rar x FileName.rar

压缩:rar a FileName.rar DirName

rar请到:http://www.rarsoft.com/download.htm 下载!

解压后请将rar_static拷贝到/usr/bin目录(其他由$PATH环境变量指定的目录也可以):

[root@www2 tmp]# cp rar_static /usr/bin/rar

~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~

.lha

解压:lha -e FileName.lha

压缩:lha -a FileName.lha FileName

lha请到:http://www.infor.kanazawa-it.ac.jp/~ishii/lhaunix/下载!

>解压后请将lha拷贝到/usr/bin目录(其他由$PATH环境变量指定的目录也可以):

[root@www2 tmp]# cp lha /usr/bin/

~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~

.rpm

解包:rpm2cpio FileName.rpm | cpio -div

~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~

.deb

解包:ar p FileName.deb data.tar.gz | tar zxf -

~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.

tar .tgz .tar.gz .tar.Z .tar.bz .tar.bz2 .zip .cpio .rpm .deb .slp .arj .rar .ace .lha .lzh .lzx .lzs .arc .sda .sfx .lnx .zoo .cab .kar .cpt .pit .sit .sea

解压:sEx x FileName.*

压缩:sEx a FileName.* FileName

 



搜索时发现7zip有两个:p7zip,p7zip-full,p7zip-rar。研究发现:

p7zip:包含7zr(最小的7zip归档工具),仅仅只能处理原生的7z格式。

p7zip-full:包含7z,支持7z、LZMA2、XZ、ZIP、CAB、GZIP、BZIP2、ARJ、TAR、CPIO、RPM、ISO和DEB格式。

p7zip-rar:包含一个能解压RAR文件的插件。

建议安装p7zip-full包(不是p7zip),因为这是最完全的7zip程序包,它支持很多归档格式。此外,如果想处理RAR文件话,还需要安装p7zip-rar包,做成一个独立的插件包的原因是因为RAR是一种专有格式。当然也可以三者都装。

安装:

sudo apt-get install p7zip-rar
sudo apt-get install p7zip-full
sudo apt-get install p7zip

使用:

直接命令行,或者压缩包右键->压缩/解压

ubuntu解压命令全览(rar)Ubuntu 16.04安装7zip_zip

很遗憾,没有GUI界面,只是扩充了系统工具,比如上面的7z格式。

更多实用功能只能使用命令行。

 

参考:

http://www.xitongzhijia.net/xtjc/20150210/37977.html

https://askubuntu.com/questions/369851/missing-gui-application-for-7-zip

https://www.howtoforge.com/tutorial/how-to-install-and-use-7zip-file-archiver-on-ubuntu-linux/

https://www.ruinelli.ch/p7zip-gui-for-linux(这里有个GUI,但是没安装成功,可以去尝试)