암호화되지 않은 디스크로 파일을 전송한 후 LUKS 암호화를 제거하는 방법

암호화되지 않은 디스크로 파일을 전송한 후 LUKS 암호화를 제거하는 방법

내 파일은 /원래 암호화된 볼륨에 있었고 각 디렉터리를 반복적으로 복사하여 암호화되지 않은 볼륨으로 이동한 다음 grub을 다시 설치했습니다.

sudo -s
cp -ax /mnt/encrypted /mnt/decrypted
for f in sys dev proc ; do mount --bind /$f /mnt/decrypted/$f ; done
chroot /mnt/decrypted
grub-install /mnt/decrypted
update-grub

/etc/fstab그에 따라 업데이트되어 원래 암호화된 볼륨이 제거되었지만 /etc/crypttab재부팅 후에도 새 볼륨을 해독하려면 비밀번호를 입력해야 합니다 /.

왜 이런 일이 발생하며 어떻게 제거합니까?

답변1

cryptsetup을 제거하고 initramfs를 다시 빌드하면 문제가 해결되었습니다.

apt-get remove --purge cryptsetup
update-initramfs -u -k all

관련 정보