I created a full-disk HD image with dd:
Code:
dd if=/dev/sda of=/path/file.img
Now I want to mount the filesystems out of this image. I used parted to get the offset and run mount:
Code:
mount -o loop,ro,offset=12345 file.img /mnt/note/root
That works fine. However, one of the FS is encrypted, and I don't see a way to mount that. Mount says:
Code:
mount: unknown filesystem type 'crypto_LUKS'
It seems that mount needs some crypto, but cryptsetup only works on devices, which I don't have yet. So where do I have to look to get this running?
Thanks!