linux 下檔案加密壓縮和解壓的方法

2021-06-26 10:12:28 字數 934 閱讀 4606

方法一:用tar命令 對檔案加密壓縮和解壓

壓縮:[html]view plain

copy

tar -zcf  - filename |openssl des3 -salt -k password | dd of=

filename

.des3  

此命令對filename檔案進行加碼壓縮 生成filename.des3加密壓縮檔案, password 為加密的密碼

解壓:[html]view plain

copy

dd if

=filename

.des3 |openssl des3 -d -k password | tar zxf -  

注意命令最後面的「-」  它將釋放所有檔案, -k password 可以沒有,沒有時在解壓時會提示輸入密碼

方法二:用zip命令對檔案加密壓縮和解壓

壓縮:[html]view plain

copy

zip -re filename.zip filename 回車,輸入2次密碼  

[html]view plain

copy

zip -rp passwork filename.zip filename  passwork是要輸入的密碼  

解壓:[html]view plain

copy

unzip filename.zip 按提示輸入密碼  

[html]view plain

copy

unzip -p passwork filename.zip passwork是要解壓的密碼,這個不會有提示輸入密碼的操作  

linux 下檔案加密壓縮和解壓的方法

方法一 用tar命令 對檔案加密壓縮和解壓 壓縮 html view plain copy tar zcf filename openssl des3 salt k password dd of filename des3 此命令對filename檔案進行加碼壓縮 生成filename.des3加密...

Linux下檔案的壓縮和解壓

壓縮技術現在主流的是gz和bz2 下面分別講解兩種技術的壓縮和解壓 tar czf mytest.tar.gz dir1 dir2 hello.c 打包壓縮 tar xzf mytest.tar.gz 解壓 tar cf mytest.tar dir1 dir2 hello.c 打包 gzip my...

Linux下檔案的壓縮和解壓

tar命令 解包 tar xvf filename.tar 打包 tar cvf filename.tar dirname 解包 tar i zstd xvf file.tar.zst gz命令 解壓1 gunzip filename.gz 解壓2 gzip d filename.gz 壓縮 gzi...