You are not logged in.
Since my wife had her laptop stolen from her car, it is time for me to encrypt my /home partition where I have personal and financial data. I am looking for some best practices from experienced users.
#1. I keep backups at home of the data in case something bad happens to the machine, this is without question.
#2. I will backup the luks header of the partition and keep it at home in a safe place.
What else is good to do?
P.S. I created the partition like this:
# cryptsetup -v --cipher aes-xts-plain64 --key-size 512 --hash sha256 --use-random luksFormat /dev/sda4
Last edited by maggie (2014-10-25 17:11:01)
Offline
Depending on the type of "crooks" you're afraid of, you might want to ensure that your /tmp is mounted in ram and that any swap partitions are encrypted. Also, just to make sure, did overwrite (or trim if you have an SSD) the partition before encrypting? Finally, you might also want to encrypt /var (private data can get stashed there when printing etc...).
Offline
Since my wife had her laptop stolen from her car
That sucks. I bet they did more damage to the car than the value of the stuff stolen.
I prefer to encrypt files and directories using tools like GPG and passphrase protected keys. But, that is just me. Most stuff is left clear text so, unless I am dealing with sensitive data, I don't need to mess with decryption unless I have to. Also, it does add a bit of security through obscurity. If most of the disk is in clear text, an adversary might not recognize that some obscure file is encrypted and might contain something of interest.
As to your backups. Your plan is not sufficient. You should have more than one backup. Your backups must be tested. At least one backup must be off-site. What if someone broke into your home and stole the laptop and the backup? Or if the house burned down?
Nothing is too wonderful to be true, if it be consistent with the laws of nature -- Michael Faraday
Sometimes it is the people no one can imagine anything of who do the things no one can imagine. -- Alan Turing
---
How to Ask Questions the Smart Way
Offline
Thank you all.
Offline