Permission denied (even as root) on a mounted ISO image with Furius ISO Mount

cpfilesystemsisomountpermissions

I mounted a ISO image with Furius ISO Mount. I cd to the mounted directory and tried to copy a file with

sudo cp file /dir

but cp writes error message

cp: cannot stat `file': Permission denied

The permissions of file are -r--r--r--

sudo chmod 777 file writes

chmod: cannot access `file': Permission denied

Do you know where the problem could be?

Best Answer

Sounds to me like furiousisomount could be repsonsible for this issue. I know similar issues with broken file system modules and similar.

I usually mount ISOs via the loop device of the kernel. You can use it this way:

mount some.iso /mnt -o loop=/dev/loop0

Related Question