From f85df16180c2c8b04888ba72e9fa0b66322de262 Mon Sep 17 00:00:00 2001 From: aaaawwWWWwwwwWWW <73749744+aaaawwWWWwwwwWWW@users.noreply.github.com> Date: Thu, 26 Nov 2020 11:54:52 -0300 Subject: [PATCH] veracrypt: add page (#4967) --- pages/linux/veracrypt.md | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 pages/linux/veracrypt.md diff --git a/pages/linux/veracrypt.md b/pages/linux/veracrypt.md new file mode 100644 index 000000000..cee980661 --- /dev/null +++ b/pages/linux/veracrypt.md @@ -0,0 +1,20 @@ +# veracrypt + +> Free and open source disk encryption software. +> More information: . + +- Create a new volume through a text user interface and use `/dev/urandom` as a source of random data: + +`veracrypt --text --create --random-source={{/dev/urandom}}` + +- Decrypt a volume interactively through a text user interface and mount it to a directory: + +`veracrypt --text {{path/to/volume}} {{path/to/mount_point}}` + +- Decrypt a partition using a keyfile and mount it to a directory: + +`veracrypt --keyfiles={{path/to/keyfile}} {{/dev/sdXN}} {{path/to/mount_point}}` + +- Dismount a volume on the directory it is mounted to: + +`veracrypt --dismount {{path/to/mounted_point}}`