add cryptsetup cheatsheat

This commit is contained in:
Jörg Thalheim 2017-04-04 09:05:49 +02:00 committed by GitHub
parent edd7b5e806
commit 517bf9599b
1 changed files with 8 additions and 0 deletions

View File

@ -0,0 +1,8 @@
# open encrypted partition /dev/sdb1 (reachable at /dev/mapper/backup)
cryptsetup open --type luks /dev/sdb1 backup
# open encrypted partition /dev/sdb1 using a keyfile (reachable at /dev/mapper/hdd)
cryptsetup open --type luks --key-file hdd.key /dev/sdb1 hdd
# close luks container at /dev/mapper/hdd
cryptsetup close hdd