To Archive a Directory to a Encrypted File:
# tar -zcvf - MY_DIR | openssl des3 -salt -k "MY PASSWORD" | dd of=MY_DIR.des3

To Decrypt the Encrypted File to its Original Directory:
# dd if=MY_DIR.des3 | openssl des3 -d -k "MY PASSWORD" | tar zxf -

arrow
arrow
    全站熱搜

    DanBrother 發表在 痞客邦 留言(0) 人氣()