1.下载:根据主机系统下载合适的版本,当前64为centos系统演示下载: wget http://www.rarlab.com/rar/rarlinux-x64-5.3.0.tar.gz 2.解压安装 tar xvf rarlinux-x64-5.3.0.tar.gz cd rar make install OK! 压缩一个文件: rar a -r pazzn.rar pazzn 压缩一个文件: unrar x pazzn.rar Linux解压tar.gz和tar.bz2的命令
解压tar.gz文件报错gzip: stdin: not in gzip format解决方法 在解压tar.gz文件的时候报错 1 2 3 4 5 [Sun@localhost Downloads]$ tar -zxvf clion-141.351.4.tar.gz gzip: stdin: not in gzip format tar: Child returned status 1 tar: Error is not recoverable: exiting now 原来原因是这个压缩
先查看文件真正的属性是什么? [root@xxxxx ~]# tar -zxvf tcl8.4.16-src.tar.gz gzip: stdin: not in gzip format tar: Child returned status 1 tar: Error is not recoverable: exiting now [root@xxxxxx ~]# file tcl8.4.16-src.tar.gz tcl8.4.16-src.tar.gz: HTML document text
毕竟是生产..... 提示以下信息: gzip: stdin: not in gzip format tar: Child returned status 1 tar: Error is not recoverable: exiting now 原因是:这个压缩包没有用gzip格式压缩,所以不用加z指令 解决办法:使用 $ tar -xvf xxxx.tar.gz 命令(即去掉z参数)