I'm fairly certain my Ubuntu 11.10 install has truecrypt for my home directory, but how can I check. Preferably without rebooting into a live disk install?

link|improve this question
feedback

migrated from crypto.stackexchange.com Jan 14 at 11:56

This question came from our site for software developers, mathematicians and others interested in cryptography.

2 Answers

The command

mount | awk '$3 == "'"$HOME"'"'

would give you an output line if your home is a mounpoint, with information about the type of filesystem. This should also allow to detect a truecrypt home folder.

link|improve this answer
feedback

If your home directory is encrypted (not truecrypted, there is difference), you can tell by looking for ~/.Private and ~/.ecryptfs in ls -la: ls -la | grep ".Private" for example.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown