| Emails |
|---|
|
----- Forwarded message from Planet Debian -----
From: Planet Debian http://feeding.cloud.geek.nz/2008/05/encrypting-your-home-directory-using.html
Francois Marier -- Encrypting your home directory using LUKS on
Laptops are easily lost or stolen and in order to protect your
If you happen to have »/home« on a separate partition already
- Copy your home directory to a temporary directory on a different mkdir /homebackup cp -a /home/* /homebackup - Encrypt your home partition: umount /home
cryptsetup -h sha256 -c aes-cbc-essiv:sha256 -s 256 luksFormat cryptsetup luksOpen /dev/hda5 chome mkfs.ext3 -m 0 /dev/mapper/chome - Add this line to »/etc/crypttab«: chome /dev/hda5 none luks,timeout=30 - Set the home partition to this in »/etc/fstab«: /dev/mapper/chome /home ext3 nodev,nosuid,relatime 0 2 - Copy your home data back into the encrypted partition: mount /home cp -a /homebackup/* /home
rm -rf /homebackupThat's it. Now to fully secure your laptop 08:28am[2] by François (noreply[bei]blogger[punkt]com)
Links:
-- ----- End forwarded message -----
-- |
