Luks 볼륨은 마운트, 읽기, 쓰기에 적합합니다. 그러나 헤더의 백업을 생성하려고 하면 아무것도 표시되지 cryptsetup luksDump
않고 cryptsetup luksHeaderBackup
오류 메시지도 표시되지 않습니다.
cryptsetup luksDump /dev/mapper/<device>
나는 sudo 와 cryptsetup luksDump /media/user/partition
. 마운트 해제된 볼륨으로도 시도했습니다.
sudo cryptsetup -v luksDump /media/<user>/LUKS
Command failed with code -4 (wrong device or file specified).
sudo cryptsetup -v luksDump /media/<user>/LUKS/
Command failed with code -4 (wrong device or file specified).
sudo cryptsetup -v luksDump /dev/mapper/LUKS
Command failed with code -1 (wrong or missing parameters).
sudo cryptsetup -v luksDump /dev/mapper/LUKS/
Device /dev/mapper/LUKS/ doesn't exist or access denied.
Command failed with code -4 (wrong device or file specified).
그리고
cryptsetup -v isLuks /dev/mapper/LUKS
Command failed with code -1 (wrong or missing parameters).
답변1
표시되는 오류는 귀하가 타겟팅하고 있음을 나타내는 것 같습니다.매핑 이름( man 8 cryptsetup
무엇을 의미하는지 보려면 "매핑"을 검색하십시오) 즉, 실제 암호화 장치가 아닌 장치 매퍼에 의해 생성된 암호 해독 장치입니다.
예를 들어, 다음을 사용하여 LUKS 장치를 여는 경우
cryptsetup luksOpen /dev/sda2 sda2_crypt
당신은 장치를 찾을 수 있습니다 sda2_crypt
(매핑 이름) /dev/mapper
하지만 실행해야 합니다.
cryptsetup luksDump /dev/sda2
암호화된 장치에 있는 헤더를 덤프합니다.