I'm using Ubuntu and I have created a full copy of my system SSD hard drive with the following command:
dd if=/dev/sda of=ubuntu.iso
and saved it on a backup HDD which is an NTFS drive.
I'm now on Windows 10 PRO and want to mount this image using WSL (Ubuntu 18.04). This is the command I'm using:
sudo mount -o ro,loop,offset=1048576 /mnt/a/ubuntu.iso /mnt/ubuntu_backup
This is the error that I get:
mount: /mnt/ubuntu_backup: mount failed: Operation not permitted.
This same command worked on Ubuntu.
Is it possible to mount this image using WSL?