引用自:http://kerneltrap.org/node/2737

 

ENCRYPTION:


 tar -zcvf - stuff|openssl des3 -salt -k secretpassword | dd of=stuff.des3

 This will create stuff.des3...don't forget the password you put in place of  secretpassword.

  dd if=stuff.des3 |openssl des3 -d -k secretpassword|tar zxf -

Ok above there is a "-" at the end... this will extract everything.

相关文章:

  • 2021-05-18
  • 2022-01-08
  • 2021-05-27
  • 2022-12-23
  • 2021-10-24
  • 2021-05-10
  • 2021-06-12
猜你喜欢
  • 2021-12-08
  • 2022-12-23
  • 2021-08-18
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-01-17
相关资源
相似解决方案