How To Encrypt Your Home Folder After Ubuntu Installation [Linux]

encrypt home folder ubuntuImagine this: it’s a great day, you’re busy working on your computer at some event, and everything seems fine. After a while you get tired and decide to get something to eat and shut down your laptop. Although it’s not supposed to happen, someone steals it while you’re gone.

At this point you freak out because your life information is on that machine, including banking data, emails, and anything else that could be considered sensitive data. Now your wonderful day has turned into a nightmare. Of course you can do things to minimize the damage that results from a stolen laptop, or you can be proactive and encrypt your information for exactly these kinds of situations.

Encrypt During Installation If Possible

If you were smart enough, you could’ve encrypted your home folder (which basically contains all of your personal data, as literally every other main system folder contains system data, not personal data) when you first installed Ubuntu onto your system. But I guess you simply chose not to (or in my case, I somehow had some issues with it). However, it’s never too late to do it now before something happens to it.

Before You Begin

Encrypting your home folder is actually a lot easier than it may sound. It only requires a few steps and a little amount of your time. Before we begin, make sure that you have a backup available of your entire home folder at another location, just in case the encryption process goes haywire for whatever reason.

Steps

The first thing you’ll want to do is open your terminal and issue this command:

sudo apt-get install ecryptfs-utils

which will install the necessary files needed to carry out the encryption process.

encrypt home folder ubuntu

In order to avoid any problems with encrypting a user’s home folder while you’re still logged into that user, it’s best to create a new user with administrative rights temporarily, or if you already have a second user account with administrative rights, you can use that instead. You can then log into that new account.

encrypt ubuntu folders

Next, in order to actually encrypt the home folder, you’ll need to run

sudo ecryptfs-migrate-home –u “username”

where “username” is the username of the user’s home folder that you want to encrypt.

encrypt home folder ubuntu

Once that is done, you’ll need to log back into the original user’s account and complete the encryption process by following the instructions presented to you to add a password to the newly encrypted folder. If that doesn’t appear, you can type into your terminal

ecryptfs-add-passphrase

to add one yourself. Once that completes, you can delete the temporary account you created, and reboot your system. Your home folder should now be encrypted and safe from anyone who doesn’t know your password!

If you really want to test it out, you can always grab a Live CD and see if you can surf around inside the home folder. Usually you can’t because of file permissions, but it’s always still possible to change the permissions with a Live CD as long as it’s not encrypted. If it’s not possible to do even that, then I’d say that the successful encryption has been confirmed.

Conclusion

Encryption is actually much more important than a lot of people believe. It’s great that such tools exist for Linux, as well as other operating systems with tools such as TrueCrypt. Hopefully they can be adopted by more people as they don’t bring any noticeable performance issues.

What do you think of encryption? Is it necessary or not? How do you do it? Let us know in the comments!

Tagged:

Danny Stieben

Danny is a high school senior who enjoys all aspects of open source software and Linux. He is also a contributor for the Fedora Project. You can follow his Twitter account here.

Similar Stuff

  • http://pulse.yahoo.com/_MKSXYXOHFJGTLHBRVTC55N3QMQ Elsie

    my roomate’s sister-in-law makes $76 hourly on the laptop. She has been without a job for 10 months but last month her paycheck was $7141 just working on the laptop for a few hours. Here’s the site to read more… CashLazy.com

    • UMoron

      That’s awesome! Wish I checked out that site, unfortunatelly my internet is down, please send it to me by Fedex on my email adress.

  • Matt

    Great article Danny! If you use whole disk encryption, you wouldn’t need to do this, correct? I guess you could still have a multi-user situation where you might want to protect users home directories from other users. Thanks!

    • http://andrealazzarotto.com/ Lazza

      If you use whole disk encryption then this is useless, that’s right. But IMHO this method is better for a couple of reasons. The first is that encrypted files on a “visible” partition are easier to backup or transfer on a system reinstall, the second is that if someone wants a not-encrypted profile for any reason this can be done. :)

    • Danny Stieben

      As Lazza says, that would be correct. However, I haven’t figured out how to do whole-disk encryption with Ubuntu yet (only Fedora). There are no options of encrypting the whole disk with Ubuntu’s regular installer.

  • Danny Stieben

    I seem to have a knack for writing articles whenever people either just did whatever was covered in the article or plan on doing it. ;)

    Thanks for the input!

  • Danny Stieben

    It seems that you’re trying to encrypt r9s’s home folder while still being logged in as r9s. Like the article shows (so look at it if you need guidance), you’ll need to set up a new user if you only have one, give that user admin rights (to be able to use sudo), log into that user, and then run the same command to encrypt r9s’s home folder.