需要帮助!
我需要如何使用加密 zip 文件Kali Linux 终端!我努力了!但我无法用自己的知识来学习它!
答案1
man zip
- 按/, 键入
pass
- 你会找到:
-e --encrypt
Encrypt the contents of the zip archive using a password which is entered
on the terminal in response to a prompt (this will not be echoed; if standard
error is not a tty, zip will exit with an error). The password prompt is
repeated to save the user from typing errors.
压缩文件的命令是
zip -e file.zip file1 file2 file3
如果你想压缩一个目录以及其中的所有目录和文件,
zip -er file.zip directory
注意:zip
使用相对较弱的加密方案。如果您正在寻找严肃且行业认可的东西,请使用7za
(from p7zip
)。
如果您不想使用控制台,请wine
在其下安装 WinRAR/7-zip。这样你就不必处理控制台了。
答案2
您可以使用 来完成此操作gpg
。
gpg -c filename.zip
- 输入要加密的密码
- 您现在应该有一个文件
filename.zip.gpg
- 移动或删除原始文件
gpg filename.zip.gpg
使用+ 输入密码来解密您的新文件- 它现在应该创建一个非
.gpg
版本的文件供您正常访问