I have a .dd file and want to check what's inside.
Many tutorials suggest Disk Image Mounter, but this option doesn't exist.
So I tried the classic way:
mkdir /mnt/image
and
sudo mount -o loop /home/name/Downloads/usb_content.dd
But get this instead
Failed to read last sector (129022): Invalid argument
HINTS: Either the volume is a RAID/LDM but it wasn't setup yet,
or it was not setup correctly (e.g. by not using mdadm --build ...),
or a wrong device is tried to be mounted,
or the partition table is corrupt (partition is smaller than NTFS),
or the NTFS boot sector is corrupt (NTFS size is not valid).
Failed to mount '/dev/loop42': Invalid argument
The device '/dev/loop42' doesn't seem to have a valid NTFS.
Maybe the wrong device is used? Or the whole disk instead of a
partition (e.g. /dev/sda, not /dev/sda1)? Or the other way around?
How can I properly mount dd image?
Edit:
sudo fdisk --list /home/name/Downloads/usb_content.dd
gives:
Units: sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disklabel type: dos
Disk identifier: 0x73736572
Device Boot Start End Sectors Size Id Type
/home/name/Downloads/usb_content.dd1 1920221984 3736432267 1816210284 866G 72 unknown
/home/name/Downloads/usb_content.dd2 1936028192 3889681299 1953653108 931,6G 6c unknown
/home/name/Downloads/usb_content.dd3 0 0 0 0B 0 Empty
/home/name/Downloads/usb_content.dd4 27722122 27722568 447 223,5K 0 Empty
Partition table entries are not in disk order.