Po aktualizacji nie mogę uzyskać dostępu do zaszyfrowanego dysku.
Próbując to zrobić:
sudo cryptsetup luksOpen /dev/sda8 Documents
Failed to setup dm-crypt key mapping
Check that kernel supports aes-xts-plain64 cipher (check syslog for more info)
Zrobiłem:
lsmod | grep -i aes
aesni_intel 167997 3
aes_x86_64 16719 1 aesni_intel
lrw 12757 1 aesni_intel
glue_helper 12649 1 aesni_intel
ablk_helper 12572 1 aesni_intel
cryptd 18553 2 aesni_intel,ablk_helper
Również:
lsmod | grep -i dm-mod
lsmod | grep -i dm-crypt
lsmod | grep -i sha256
lsmod | grep -i xts
i nic nie zwrócili, więc modyfikuję je wszystkie, ale wciąż mam ten sam problem.
linux
encryption
luks
Jerzy
źródło
źródło
zgrep CONFIG_CRYPTO_XTS /proc/config.gz
zwracaxts
moduł jest załadowany (lub czy można go załadować)?modprobe xts
ale wciąż to samodmesg
?)Odpowiedzi:
Według
man cryptsetup
:Spróbuj także
cryptsetup --help
pokazać wartości domyślne.FYI: My (Linux Mint) cryptsetup działa dobrze z domyślnym LUKS. Mój
cryptsetup --help
ma to na końcu:I mój
lsmod
nie zawiera wzmianki o sha, aes lub xts, ale ma:dm_crypt 22653 0
(zwróć uwagę na podkreślenie, a nie myślnik jak w twoim Q)A mój
/proc/crypto
ma:źródło