How can I mount iso file directly?

On Linux, I can mount a iso file to /mnt/cdrom directory like below.

mount -t iso9660 -o loop mytest.iso /mnt/cdrom


How can I do this on QNX?

mount -T cd mytest.iso

It seems not to work well… Any option needed?
And I’d like to know what “-o” takes. I couldn’t find those in use or help
page.
It just says “options specific to the servers”. It’s difficult to
understand. :-/

And… Is “mkisofs” below working well now?
ftp://ftp.qnx.com/usr/free/qnx4/os/utils/misc/mkisofs-1.11.1.tgz
While compiling it, error related to “struct stat” occured. But it’s
trivial.
So I got “mkisofs” binary and made a iso file. It seemed to work well.
After burning it into CD, I tried to access /fs/cd0 but it made no response.
And I’m trying to mount the iso file directly now.
Utill now, I’m not sure if the mkisofs binary and the iso file are right or
not. :wink:
Could you correct this?

Thanks a lot.

On Linux, I can mount a iso file to /mnt/cdrom directory like below.
mount -t iso9660 -o loop mytest.iso /mnt/cdrom

mount -t cd mytest.iso /mnt/cdrom


(this could have a section in the ystem Administration Guide;
ihmm… 18 Setting Up Other File Systems ?)

kabe