how to mount mmcblk0p28 image file on PC
My Jolla C fall into recovery mode again. I could save image to file:
dd if=/dev/mmcblk0p28 of=/mnt/BackupCard/jolla-fullBackup-p28.img
After that i could do factory reset. But executing dd back doesn't help as root partition contains error wich cannot be fixed by fsck on the Jolla C. So i want to fix them on PC. I set loop back device:
losetup /dev/loop1 ./jolla-fullBackup-p28.img
Now i am trying to mount image on PC. But command
mount -t ext4 /dev/loop1 /media/sailfish/root
shows error as mmcblk0p28 is not simple device:
mount: wrong fs type, bad option, bad superblock on /dev/loop1,
missing codepage or helper program, or other error
In some cases useful info is found in syslog - try dmesg | tail or so.
How can i setup and mount this image on PC ?