LUKS 파티션의 암호 해독에 실패했습니다.

LUKS 파티션의 암호 해독에 실패했습니다.

부팅 시 ntfs 파티션을 마운트하려고 하는데, 이를 위해 gnome-disks를 사용하고 있습니다. ntfs 파티션을 선택하고 부팅 시 마운트되도록 구성을 변경했습니다. 그런 다음 시스템을 재부팅하고 /home 파티션의 암호를 해독하기 위한 비밀번호를 요청했을 때 일부 오류가 발생했습니다. 비밀번호가 맞는 것 같아요. Journal -xb 명령 결과에서 다음 오류를 발견했습니다.

키 파일을 사용하여 활성화할 수 없습니다. '/crypto_keyfile.bin' 매개변수가 잘못되었습니다.

내 lsblk 명령 결과는 다음과 같습니다.

[manjaro-gnome /]# lsblk -o name,uuid,mountpoint
NAME                                          UUID                                 MOUNTPOINT
loop0                                                                              /run/miso/sfs/livefs
loop1                                                                              /run/miso/sfs/mhwdfs
loop2                                                                              /run/miso/sfs/desktopfs
loop3                                                                              /run/miso/sfs/rootfs
sda                                                                                
├─sda1                                        2E6B-B242                            
├─sda2                                        B48F-011C                            
├─sda3                                        a16ce210-e958-40bf-843a-60d659472f57 /repchroot
├─sda4                                        d5a167c6-93ce-4a2a-9ff6-1010f0674eaf 
├─sda5                                                                             
├─sda6                                        DC0E00690E003ED0                     
└─sda7                                        77286FD753707FDC                     
sdb                                           2018-04-28-08-00-50-00               
├─sdb1                                        2018-04-28-08-00-50-00               /run/miso/bootmnt
└─sdb2                                        8955-B080                            
nvme0n1                                                                            
├─nvme0n1p1                                   F382-3817                            
├─nvme0n1p2                                   123a2f7d-e658-41d1-b42c-cb3ec3b3d5c4 
├─nvme0n1p3                                   6158a5ba-e5d6-4955-95c7-2eb5ad109a7b /
└─nvme0n1p4                                   0330bdcc-3bf2-4c83-8b1d-748a0bef9fe4 
  └─luks-0330bdcc-3bf2-4c83-8b1d-748a0bef9fe4 466c08d3-d7f4-4ee7-b313-83e0c8dbd030

내 fstab 명령 결과는 다음과 같습니다.

[manjaro-gnome /]# cat etc/fstab
# /etc/fstab: static file system information.
#
# Use 'blkid' to print the universally unique identifier for a device; this may
# be used with UUID= as a more robust way to name devices that works even if
# disks are added and removed. See fstab(5).
#
# <file system>             <mount point>  <type>  <options>  <dump>  <pass>
UUID=F382-3817                            /boot/efi      vfat    defaults,noatime 0 2
UUID=6158a5ba-e5d6-4955-95c7-2eb5ad109a7b /              ext4    defaults,noatime 0 1
/dev/mapper/luks-0330bdcc-3bf2-4c83-8b1d-748a0bef9fe4 /home          ext4    defaults,noatime 0 2
UUID=123a2f7d-e658-41d1-b42c-cb3ec3b3d5c4 swap           swap    defaults,noatime 0 2
UUID=283610a5-2faa-4382-ae4f-71575533e846 swap           swap    defaults,noatime 0 2
/dev/sda7 /mnt/sda7 auto nosuid,nodev,nofail,x-gvfs-show 0 0

내 crypttab 명령의 결과는 다음과 같습니다.

[manjaro-gnome /]# cat etc/crypttab
# /etc/crypttab: mappings for encrypted partitions.
#
# Each mapped device will be created in /dev/mapper, so your /etc/fstab
# should use the /dev/mapper/<name> paths for encrypted devices.
#
# See crypttab(5) for the supported syntax.
#
# NOTE: Do not list your root (/) partition here, it must be set up
#       beforehand by the initramfs (/etc/mkinitcpio.conf). The same applies
#       to encrypted swap, which should be set up with mkinitcpio-openswap
#       for resume support.
#
# <name>               <device>                         <password> <options>
luks-0330bdcc-3bf2-4c83-8b1d-748a0bef9fe4 UUID=0330bdcc-3bf2-4c83-8b1d-748a0bef9fe4     /crypto_keyfile.bin luks

내 루트 디렉터리에 /crypto_keyfile.bin 파일이 없습니다. 가능한 해결책이 있는 이 주제를 찾았지만 내 문제와 동일한 문제가 있는지는 확실하지 않습니다. https://forum.manjaro.org/t/decryption-problem/25284/18

관련 정보