diff options
author | Sebastian 'Swift Geek' Grzywna <swiftgeek@gmail.com> | 2019-03-19 08:41:29 +0100 |
---|---|---|
committer | Sebastian 'Swift Geek' Grzywna <swiftgeek@gmail.com> | 2019-03-19 08:41:29 +0100 |
commit | b9021d0e2e58a6bd216bd0f237b0315c3ac0b76a (patch) | |
tree | 940a14dd841c7ec76e0a1b9e9bf35dd81de213a6 /docs/gnulinux/encrypted_parabola.md | |
parent | 834ad955ad7407b842546422c711034fe0c4ace2 (diff) | |
download | librebootfr-b9021d0e2e58a6bd216bd0f237b0315c3ac0b76a.tar.gz librebootfr-b9021d0e2e58a6bd216bd0f237b0315c3ac0b76a.zip |
parabola: Update cryptsetup line
Cryptsetup is now using LUKS2 by default.
https://gitlab.com/cryptsetup/cryptsetup/commit/ae90497762bc4e3f04064e0ebbbde8c64bf27c4a
Diffstat (limited to 'docs/gnulinux/encrypted_parabola.md')
-rw-r--r-- | docs/gnulinux/encrypted_parabola.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/gnulinux/encrypted_parabola.md b/docs/gnulinux/encrypted_parabola.md index 4abea852..21321640 100644 --- a/docs/gnulinux/encrypted_parabola.md +++ b/docs/gnulinux/encrypted_parabola.md @@ -138,7 +138,7 @@ Now that you have created the partition, it's time to create the encrypted volum using the `cryptsetup` command, like this: # cryptsetup -v --cipher serpent-xts-plain64 --key-size 512 --hash whirlpool \ - >--iter-time 500 --use-random --verify-passphrase luksFormat /dev/sdXY + --iter-time 500 --use-random --verify-passphrase --type luks1 luksFormat /dev/sdXY These are just recommended defaults; if you want to use anything else, or to find out what options there are, run `man cryptsetup`. |