diff options
Diffstat (limited to '')
-rw-r--r-- | cheat/.cheat/cryptsetup | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/cheat/.cheat/cryptsetup b/cheat/.cheat/cryptsetup new file mode 100644 index 0000000..a5ccc69 --- /dev/null +++ b/cheat/.cheat/cryptsetup @@ -0,0 +1,11 @@ +# 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 + +# create encrypted disk +cryptsetup luksFormat --type luks2 /dev/sdd |