web-dev-qa-db-ja.com

Linuxコマンドラインで新しいVeraCryptコンテナを生成します

Linuxコマンドラインで、ユーザーの操作をできるだけ少なくして、非表示になっていない新しいext4VeraCryptコンテナーを作成する方法の例を探しています。他のパラメータ(暗号化など)は、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).

したがって、考慮すべきオプションのリストを提供します。引数をどのようにフォーマットする必要があるかを確認するには、これらすべてのオプションの説明を調べる必要があるため、例の方がはるかに役立ちます。

3
highsciguy

VeraCryptコマンドラインの使用法ページ を参照してください。最後に、/createに固有のすべてのサブオプションがリストされています。

例もリストされています:

パスワードテストを使用して10MBのファイルコンテナを作成し、FATを使用してフォーマットします。

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