VeraCrypt: Difference between revisions
From WickyWiki
Created page with "Category:Ubuntu Category:Ubuntu System Category:201708 = Linux - install = * http://linuxg.net/install-veracrypt-on-ubuntu/ <syntaxhighlight lang=bash> sudo add..." |
|||
| (5 intermediate revisions by the same user not shown) | |||
| Line 13: | Line 13: | ||
</syntaxhighlight> | </syntaxhighlight> | ||
== | == Commandline == | ||
* https://www.veracrypt.fr/en/Command%20Line%20Usage.html | |||
<syntaxhighlight lang=bash> | <syntaxhighlight lang=bash> | ||
| Line 25: | Line 27: | ||
Download and run installer | Download and run installer | ||
== | == Commandline == | ||
Options: | |||
{| class="wikitable" | {| class="wikitable" | ||
|- | |- | ||
| Line 49: | Line 54: | ||
= Mount partition = | = Mount partition = | ||
To mount a partition | * https://veracrypt.codeplex.com/wikipage?title=Command%20Line%20Usage | ||
To mount a partition/device-hosted volume, use, for example, /v \Device\Harddisk1\Partition3 (to determine the path to a partition/device, run VeraCrypt and click Select Device). You can also mount a partition or dynamic volume using its volume name (for example, /v \\?\Volume{5cceb196-48bf-46ab-ad00-70965512253a}\). To determine the volume name use e.g. mountvol.exe. Also note that device paths are case-sensitive. | |||
You can also specify the Volume ID of the partition/device-hosted volume to mount, for example: /v ID:53B9A8D59CC84264004DA8728FC8F3E2EE6C130145ABD3835695C29FD601EDCA. The Volume ID value can be retrieved using the volume properties dialog. | |||
=See also= | |||
* [[Bitlocker with Dislocker on Linux]] | * [[Bitlocker with Dislocker on Linux]] | ||
* [[TrueCrypt]] | * [[TrueCrypt]] | ||
* [[Clone Files to Cloud Storage]] | |||
Latest revision as of 13:56, 19 September 2018
Linux - install
sudo add-apt-repository ppa:unit193/encryption sudo apt-get update sudo apt-get install veracrypt
Commandline
veracrypt --slot=1 -k /path/to/keyfiledir /path/to/containterfile.vc /media/$USER/mountpoint
Windows - install
Download and run installer
Commandline
Options:
| /a | automatic |
| /e | open file explorer |
| /q | quiet |
| /m removable | Assume removable medium at the cost of some writing performance |
| /k | keyfiles |
| /v | filecontainer or partition |
| /l | drive letter |
"C:\Program Files\VeraCrypt\VeraCrypt.exe" /a /e /q /m removable /k D:\path\keyfile1.txt /k D:\path\keyfile2.txt /v D:\path\containerfile.vc /l E
Mount partition
To mount a partition/device-hosted volume, use, for example, /v \Device\Harddisk1\Partition3 (to determine the path to a partition/device, run VeraCrypt and click Select Device). You can also mount a partition or dynamic volume using its volume name (for example, /v \\?\Volume{5cceb196-48bf-46ab-ad00-70965512253a}\). To determine the volume name use e.g. mountvol.exe. Also note that device paths are case-sensitive.
You can also specify the Volume ID of the partition/device-hosted volume to mount, for example: /v ID:53B9A8D59CC84264004DA8728FC8F3E2EE6C130145ABD3835695C29FD601EDCA. The Volume ID value can be retrieved using the volume properties dialog.