To mount:
$ sudo cryptsetup --type tcrypt open /path/to/truecrypt-volume mapping-name
$ sudo mount -o uid=1001 /dev/mapper/mapping-name /media/tcv
(Note: [1] if /media/tcv did not exist, create it using command mkdir. [2] check your uid using command id.)
Access the content at /media/tcv.
To unmount:
$ sudo umount /media/tcv
$ sudo cryptsetup close mapping-name
No comments:
Post a Comment