Forrest logo
tool overview
On this page you find all important commands for the CLI tool veracrypt. If the command you are looking for is missing please ask our AI.

veracrypt

Veracrypt is a widely used open-source command line tool for creating and managing encrypted disk partitions and virtual encrypted disks. It aims to provide strong security and privacy by creating an encrypted container where sensitive data can be stored securely.

One of the key features of Veracrypt is its ability to create hidden volumes within encrypted volumes, providing an extra layer of protection. This allows users to have a "decoy" volume and a hidden compartment with separate passwords for plausible deniability.

With Veracrypt, you can encrypt entire drives, including system drives, external devices, or create a virtual encrypted disk file. It supports various encryption algorithms, including AES, Serpent, and Twofish, allowing users to choose the level of security they desire.

It offers cross-platform compatibility, allowing users to encrypt and decrypt data on multiple operating systems, including Windows, macOS, and Linux. The command line interface provides advanced users with more flexibility and automation capabilities.

Veracrypt also offers features like keyfile support, which allows users to use a separate file as an additional authentication factor alongside a password. Furthermore, it provides options for mounting volumes as read-only, managing hotkeys for automounting, and creating portable encrypted containers.

Overall, Veracrypt is a powerful command line tool that provides users with a robust way to secure their data with strong encryption, hidden volumes, and cross-platform compatibility.

List of commands for veracrypt:

  • veracrypt:tldr:244ed veracrypt: 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}
    try on your machine
    explain this command
  • veracrypt:tldr:36b34 veracrypt: Dismount a volume on the directory it is mounted to.
    $ veracrypt --dismount ${path-to-mounted_point}
    try on your machine
    explain this command
  • veracrypt:tldr:585b2 veracrypt: Decrypt a partition using a keyfile and mount it to a directory.
    $ veracrypt --keyfiles=${path-to-keyfile} ${-dev-sdXN} ${path-to-mount_point}
    try on your machine
    explain this command
  • veracrypt:tldr:6af56 veracrypt: Decrypt a volume interactively through a text user interface and mount it to a directory.
    $ veracrypt --text ${path-to-volume} ${path-to-mount_point}
    try on your machine
    explain this command
tool overview