加密和解密 tar
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了加密和解密 tar相关的知识,希望对你有一定的参考价值。
平时我们使用惯了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就是你压缩时候的加的密码。最后的 - 表示释放所有文件
本文出自 “Promise(许诺)” 博客,请务必保留此出处http://caimengzhi.blog.51cto.com/9787265/1907388
以上是关于加密和解密 tar的主要内容,如果未能解决你的问题,请参考以下文章