文章目录 tar压缩和解压1.压缩2.解压 tar压缩和解压 1.压缩 # 把文件打包为tar.gz命令: tar -zcvf 文件名.tar.gz 要压缩的文件/文件夹 # 例如: tar -zcvf hello.tar.gz hello 2.解压 tar -zxvf 文件名.tar.gz