Displaying 1 result from an estimated 1 matches for "c_home".
Did you mean:
r_home
2014 Nov 11
1
login fail on crypted /home
...e has not helped....
This how I build the crypted partition (following a tutorial, just
changing ext4 with xfs):
lvcreate -L 30G -n lv_home vg_portable
badblocks -s -w -t random -v /dev/vg_portable/lv_home
cryptsetup luksFormat /dev/vg_portable/lv_home
cryptsetup luksOpen /dev/vg_portable/lv_home c_home
mkfs -t xfs -L /home /dev/mapper/c_home
The blkid command shows:
/dev/mapper/c_home: LABEL="/home"
UUID="1118317e-cc5a-4183-a498-21418f82e982" TYPE="xfs"
In /etc/fstab I add:
UUID=1118317e-cc5a-4183-a498-21418f82e982 /home xfs defaults 1 2
In /etc/crypttab I add:...