码迷,mamicode.com
首页 > 其他好文 > 详细

tar命令加密压缩/解密解压

时间:2018-04-19 20:49:29      阅读:425      评论:0      收藏:0      [点我收藏+]

标签:方式   turned   std   path   strong   错误信息   openssl   pen   highlight   

在tar解压文件时发生下面错误信息

gzip: stdin: not in
gzip  format
tar: Child returned status 1
tar: Error is not recoverable: exiting now

发现文件被加密压缩了,可以用下面方式进行解压

1、加密压缩

tar -czvf - file | openssl des3 -salt -k password -out /path/to/file.tar.gz

2、解密解压

openssl des3 -d -k password -salt -in /path/to/file.tar.gz | tar xzf - 

tar命令加密压缩/解密解压

标签:方式   turned   std   path   strong   错误信息   openssl   pen   highlight   

原文地址:https://www.cnblogs.com/wclwcw/p/8886120.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!