tar命令的基本使用,压缩、打包和加密
linux-dash
A beautiful web dashboard for Linux
项目地址:https://gitcode.com/gh_mirrors/li/linux-dash
免费下载资源
·
tar命令的基本使用,压缩、打包和加密
本文是基于ubuntu 14.04系统环境,使用命令tar对文件和目录进行压缩、解压、打包、拆包和加密操作:
- Ubuntu 14.04
Linux命令
- 打包压缩
tar -czvf files.tar.gz files # 将当前目录下的files文件夹打包压缩
- 打包压缩
tar -xzvf files.tar.gz # 将当前目录下的files.tar.gz进行解压拆包
- 加密压缩
# 将当前目录下的files文件夹打包压缩,密码为password
tar -czvf - files | openssl des3 -salt -k password -out files.tar.gz
- 解密解缩
# 将当前目录下的files.tar.gz进行解密解压拆包
openssl des3 -d -k password -salt -in files.tar.gz | tar xzvf -
GitHub 加速计划 / li / linux-dash
10.39 K
1.2 K
下载
A beautiful web dashboard for Linux
最近提交(Master分支:2 个月前 )
186a802e
added ecosystem file for PM2 4 年前
5def40a3
Add host customization support for the NodeJS version 4 年前
更多推荐
已为社区贡献9条内容
所有评论(0)