LUKS: Difference between revisions
Created page with "LUKS encryption ==Getting Started== See Archwiki: dm-crypt/Device encryption.\ See [https://www.cyberciti.biz/hardware/howto-linux-hard-disk-encryption-with-luks-cryptset..." |
|||
Line 3: | Line 3: | ||
==Getting Started== | ==Getting Started== | ||
See [[Archwiki: dm-crypt/Device encryption]].\ | See [[Archwiki: dm-crypt/Device encryption]].\ | ||
<pre> | <pre> | ||
Line 9: | Line 9: | ||
--iter-time 3000 --use-urandom --verify-passphrase luksFormat <device> | --iter-time 3000 --use-urandom --verify-passphrase luksFormat <device> | ||
</pre> | </pre> | ||
==Resources== | |||
* [https://www.cyberciti.biz/hardware/howto-linux-hard-disk-encryption-with-luks-cryptsetup-command/ nixCraft How To Linux Hard Disk Encryption With LUKS] |
Revision as of 03:00, 21 July 2020
LUKS encryption
Getting Started
See Archwiki: dm-crypt/Device encryption.\
cryptsetup -v --type luks --cipher aes-xts-plain64 --key-size 512 --hash sha512 \ --iter-time 3000 --use-urandom --verify-passphrase luksFormat <device>