Related changes
Jump to navigation
Jump to search
Enter a page name to see changes on the pages linked to or from that page. (To see members of a category, enter "Category:Name of category"). Changes to pages on your Watchlist are highlighted in bold.
List of abbreviations:
- N
- This edit created a new page (also see list of new pages)
- m
- This is a minor edit
- b
- This edit was performed by a bot
- (±123)
- The page size changed by this number of bytes
27 May 2025
N 23:28 | Automatically-mounting-veracrypt-volume-at-boot diffhist +575 Admin talk contribs (Created page with " This script automatically opens a truecrypt volume using veracrypt. Requires the 'veracrypt' binary to be installed. <pre> #!/bin/bash # mount a truecrypt volume VC=/usr/bin/veracrypt CONTAINER=/mnt/usb/truecrypt-volume.tc MOUNTPOINT=/mnt/data VC_PASS=<yourpassword> DMASK=0022 FMASK=0133 # veracrypt syntax: if echo "$VC_PASS" | $VC -tc -t -k "" --protect-hidden=no "$CONTAINER" "$MOUNTPOINT" --fs-options="users,gid=100000,dmask=$DMASK,fmask=$FMASK" then echo "$CO...") |