Does anybody have a solution on how I can run Linux (Mint) alongside Truecrypt which needs to be encrypted by truecrypt?
Ideally though I would like both operating systems encrypted by Truecrypt, but that isn't possible as Truecrypt is lacking in these kind of features. And unfortunately the devs legged it away from their software.
Anyways...
Last comment at http://ubuntuforums.org/showthread.php?t=1869028 suggests running Linux alongside an encrypted Windows partition is possible.
Unfortunately there are no clear tutorials I have found on cryptsetup and how to use it. I have spent weeks researching and am still stuck. Granted, most of the time I was ill.
Anyways, does anyone know of a decent tutorial on how to use CryptSetup via terminal?
– user138072 Dec 01 '15 at 01:54cryptsetup luksFormat /dev/...
to prepare the device/partition/whatever and set up your main passphrase, thencryptsetup open /dev/... mappername
to "open" it and then you can create an actual usable filesystem. – cylgalad Dec 01 '15 at 09:15