Veracrypt: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
No edit summary |
||
Line 43: | Line 43: | ||
sudo zuluCrypt-cli -q -d test.vc |
sudo zuluCrypt-cli -q -d test.vc |
||
</pre> |
</pre> |
||
[[automatically-mounting-veracrypt-volume-at-boot]] |
Latest revision as of 23:21, 27 May 2025
How to create a new veracrypt-encrypted volume using zulucrypt:
required packages:
apt-get install zulucrypt-cli
- create a new empty file with a size of 10MB
dd if=/dev/zero of=test.vc bs=1M count=10
- encrypt the file and create an ext2 filesystem in it
sudo zuluCrypt-cli -c -d test.vc -t vcrypt -z ext2
NOTE: run as sudo if you get a 'setgroups' error
NOTE: install 'dosfstools' if you get a mkfs.vfat file not found error when using '-z vfat'
Mount a veracrypt-encrypted file:
sudo zuluCrypt-cli -o -d test.vc -t vcrypt
List all the currently mounted volumes:
sudo zuluCrypt-cli -L
Unmount a volume:
sudo zuluCrypt-cli -q -d test.vc