在 Linux 命令行上生成一个新的 VeraCrypt 容器

在 Linux 命令行上生成一个新的 VeraCrypt 容器

我正在寻找一个示例,说明如何在 Linux 命令行上以尽可能少的用户交互创建新的非隐藏 ext4 VeraCrypt 容器。其他参数(例如加密)应为 GUI 的当前默认选择。

veracrypt -h给出了一个全面的选项列表。特别是它说:

--create[=VOLUME_PATH]
 Create a new volume. Most options are requested from the user if not specified
 on command line. See also options --encryption, -k, --filesystem, 
--hash, -p, --random-source, --quick, --size, --volume-type. Note that passing some of the
 options may affect security of the volume (see option -p for more information).

因此它提供了要考虑的选项列表。示例会更有帮助,因为我需要查看所有这些选项的描述才能了解参数需要如何格式化。

答案1

查看 VeraCrypt 命令行使用页面,其中最后列出了所有特定于的子选项/create

还列出了一个例子:

使用密码测试创建一个 10 MB 的文件容器并使用 FAT 格式化:

"C:\Program Files\VeraCrypt\VeraCrypt Format.exe" /create c:\Data\test.hc /password test /hash sha512 /encryption serpent /filesystem FAT /size 10M /force

答案2

在 Linux 上生成 VeryCrypt 容器的示例命令行是

veracrypt -t --create test.vc --password test --hash sha512 --encryption AES --filesystem ext4 --volume-type normal -k "" --pim 0 --size 10M.

根据需要调整参数。其中一些实际上是默认值。

将开关 -t 添加到参数列表前面会有所帮助。

相关内容