平时我们使用惯了tar来对文件和文件夹来进行压缩和解压,但是有时候需要像windows上rar压缩软件一样,在压缩的时候指定密码,然后在解压的时候指定压缩时候密码就可以解压。
a. 没有密码正常操作。
- 压缩
[email protected]:~$ tar zcvf a.tar.gz 1.txt 1.txt [email protected]:~$ ls a.tar.gz a.tar.gz
2. 解压
[email protected]:~$ rm -rf 1.txt [email protected]:~$ tar zxvf a.tar.gz 1.txt [email protected]:~$ ls 1.txt 1.txt
b. 有密码操作
1. 带密码压缩,
[email protected]:~$ ls 1.txt [email protected]:~$ cat 1.txt 1 [email protected]:~$ tar -zcvf - 1.txt| openssl des3 -salt -k password -out 1.tar.gz 1.txt [email protected]:~$ ls 1.tar.gz 1.txt
其中password就是密码,替换成你想输入的密码。
2. 带密码解压
[email protected]:~$ rm -rf 1.txt [email protected]:~$ openssl des3 -d -k password -salt -in 1.tar.gz | tar xzf - [email protected]:~$ ls 1.tar.gz 1.txt [email protected]:~$ cat 1.txt 1
其中password就是你压缩时候的加的密码。最后的 - 表示释放所有文件
时间: 2024-11-07 20:38:45