So here’s the context: I did sudo cat /run/media/vadym/T7/Backups/2023-07-09-11-img/nvme0n1p3.ntfs-ptcl-img.gz.* | sudo gzip -d -c | sudo partclone.restore -C -s - -O nvme0n1p3_C_Drive.img
to create an image from my Clonezilla backup, I wanted to do this because I wanted to extract some files from the backup, so I tried to mount the image as a loop device: sudo mount -r -o loop nvme0n1p3_C_drive.img /mnt/C
. Here’s the output:
Failed to read last sector (209399806): 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/loop0': Invalid argument
The device '/dev/loop0' 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 do I solve this issue?