1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-07-03 15:35:26 +02:00
tldr/pages/linux/veracrypt.md

21 lines
790 B
Markdown
Raw Normal View History

2020-11-26 11:54:52 -03:00
# veracrypt
> Free and open source disk encryption software.
> More information: <https://arcanecode.com/2021/06/21/veracrypt-on-the-command-line-for-ubuntu-linux/>.
2020-11-26 11:54:52 -03:00
- Create a new volume through a text user interface and use `/dev/urandom` as a source of random data:
`veracrypt {{[-t|--text]}} {{[-c|--create]}} --random-source={{/dev/urandom}}`
2020-11-26 11:54:52 -03:00
- Decrypt a volume interactively through a text user interface and mount it to a directory:
`veracrypt {{[-t|--text]}} {{path/to/volume}} {{path/to/mount_point}}`
2020-11-26 11:54:52 -03:00
- Decrypt a partition using a keyfile and mount it to a directory:
`veracrypt {{[-k|--keyfiles]}} {{path/to/keyfile}} {{/dev/sdXN}} {{path/to/mount_point}}`
2020-11-26 11:54:52 -03:00
- Dismount a volume on the directory it is mounted to:
`veracrypt {{[-d|--dismount]}} {{path/to/mounted_point}}`