All public logs
Jump to navigation
Jump to search
Combined display of all available logs of wikipost. You can narrow down the view by selecting a log type, the username (case-sensitive), or the affected page (also case-sensitive).
- 23:28, 27 May 2025 Admin talk contribs created page Automatically-mounting-veracrypt-volume-at-boot (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...")