压缩解压缩.tar格式文件:
把文件打包为tar.gz命令: tar -zcvf 文件名.tar.gz 要压缩的文件/文件夹
例如,把webfile目录(包括里面的文件)压缩为webfile.tar.gz,命令:tar -zcvf webfile.tar.gz webfile
解压缩:tar -zxvf tar.gz
压缩解压缩.zip格式文件:
安装zip的命令有:
1、“yum install zip”命令,可安装zip压缩程序,压缩后的文件后缀名为“.zip”;
2、“yum install unzip”命令,可安装unzip解压缩程序,可为“.zip”压缩文件进行解压
把文件打包为.zip:zip -vr bookshop.zip bookshoping/ index.html //bookshop.zip 压缩后名称,bookshoping文件夹,index.html文件
解压缩:unzip a.zip