linux cryptfs
November 14th, 2010
No comments
setup:
cryptsetup -y luksFormat /dev/sdb1 -c aes -s 256 -h sha256
mount:
cryptsetup luksOpen /dev/sdb1 crypted mount /dev/mapper/crypted /u0
umount:
umount /u0 cryptsetup luksClose /dev/mapper/crypted
