压缩: tar -zcvf 压缩后文件名.tar.gz 被压缩文件 解压: tar -zxvf 被解压文件 具体的可以在linux环境下 用 tar --help 查看详细说明格式:tar [option] file -c create create a new archive -x extract extract files from an archive -t list list the conte
具体的可以在linux环境下 用tar --help查看详细说明格式:tar [option] file -c create create a new archive -x extract extract files from an archive -t list list the contents of an archive 其中c/x/t不能同时存在 -z --gzip, --gunzip, --ungzip filter the archive through gzip -j, --bzi
tar -c, --create create a new archive(建立压缩档案) -x, --extract, --get extract files from an archive(解压) -t, --list list the contents of an archive(查看内容) -r, --append append files to the end of an archive(向压缩归档文件末尾追加文件) -u, --update only append files new
zip 压缩命令:(可压缩文件或目录) 压缩文件: zip new_name.zip file_name unzip name.zip 解压 压缩文件或目录: 指定解压位置: unzip name.zip -d dir_name unzip -l name.zip 查看压缩文件里的文件 tar 打包命令:打包文件或目录 tar -cvf name.tar file_name 打包 tar -xvf name.tar 解包 同时打包文件和目录: tar -cvf nam
1\可先进入要解压的目的目录,然后使用tar命令 比如我要将桌面的a.tar.bz2解压到/var/b cd /var/b tar -xjf /root/Desktop/a.tar.bz2 2\可直接在终端中 使用 tar -xjf /root/Desktop/a.tar.bz2 -C /var/b (如果压缩包在桌面上时常会忘了前缀/root/Desktop/而出错,总之就是要将完整路径写出,无论目的还是源)