diff options
author | HimbeerserverDE <himbeerserverde@gmail.com> | 2022-09-05 19:35:38 +0200 |
---|---|---|
committer | HimbeerserverDE <himbeerserverde@gmail.com> | 2022-09-05 19:35:38 +0200 |
commit | 40c8a66e0e379256ea9bbd32139f2b41870ceab2 (patch) | |
tree | 2e9f587d09b283c4fb1b62d9d89ef0866b25cf13 /cryptinstall | |
parent | 21e86e1bfc76021bd15210e07f757b430e07ef2f (diff) |
Format /boot with hash PBKDF2
Diffstat (limited to 'cryptinstall')
-rwxr-xr-x | cryptinstall | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cryptinstall b/cryptinstall index e86c8ef..4d357fc 100755 --- a/cryptinstall +++ b/cryptinstall @@ -18,7 +18,7 @@ parted -s /dev/sda mklabel msdos parted -s -a optimal /dev/sda mkpart primary ext4 0% 256MiB parted -s -a optimal /dev/sda mkpart primary ext4 256MiB 100% -echo "artix" | cryptsetup -q luksFormat /dev/sda1 +echo "artix" | cryptsetup -q --hash pbkdf2 luksFormat /dev/sda1 echo "artix" | cryptsetup -q open /dev/sda1 sda1_crypt echo "artix" | cryptsetup -q luksFormat /dev/sda2 |