Update cheatsheets

This commit is contained in:
ivuorinen
2025-04-26 00:18:47 +00:00
parent 9b06c2023f
commit 47db9e503e
127 changed files with 302 additions and 302 deletions

View File

@@ -6,20 +6,20 @@ source: https://github.com/tldr-pages/tldr.git
# veracrypt
> Free and open source disk encryption software.
> More information: <https://www.veracrypt.fr/code/VeraCrypt/plain/doc/html/Documentation.html>.
> More information: <https://arcanecode.com/2021/06/21/veracrypt-on-the-command-line-for-ubuntu-linux/>.
- 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}}`
`veracrypt {{[-t|--text]}} {{[-c|--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}}`
`veracrypt {{[-t|--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}}`
`veracrypt {{[-k|--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}}`
`veracrypt {{[-d|--dismount]}} {{path/to/mounted_point}}`