(五)Linux系统运维-Linux常用命令-压缩解压
linux-dash
A beautiful web dashboard for Linux
项目地址:https://gitcode.com/gh_mirrors/li/linux-dash
免费下载资源
·
(五)Linux系统运维-Linux常用命令-压缩解压
以下为Red Hat系列Linux的命令集,我使用的Centos7.5版本。
压缩解压
gzip(压缩文件)
#gzip命令【文件名】,压缩后的文件后缀为.gz
gunzip(解压文件)
#gunzip命令【文件名】
tar(打包目录,常用)
#tar命令
tar
-c 产生.tar的打包文件
-x 解压.tar.gz的文件和-c参数正好相反
-v 显示详细信息
-f 指定解压缩后的文件名
-z 打包同时压缩,打包压缩后文件后缀为.tar.gz
#把dir1压缩并打包为file1.tar.gz
tar -zcvf file1.tar.gz dir1
#把file1.tar.gz解压并打包为dir1
tar -zxvf file1.tar.gz dir1
zip(压缩文件或目录)
#zip命令
zip
-r 压缩目录
unzip(解压.zip文件)
#unzip命令【文件名】
bzip2(压缩文件或目录,不常用)
#bzip2命令【文件名】,文件后缀.bz2
bzip2
-k 压缩后保留源文件
bunzip2(解压.bz2文件,不常用)
#bunzip2命令【文件名】
bunzip2
-k 解压后保留源文件
Linux技术交流QQ群:789383813(添加时请备注Linux)
GitHub 加速计划 / li / linux-dash
6
1
下载
A beautiful web dashboard for Linux
最近提交(Master分支:4 个月前 )
186a802e
added ecosystem file for PM2 4 年前
5def40a3
Add host customization support for the NodeJS version 4 年前
更多推荐
已为社区贡献3条内容
所有评论(0)