Joseph Cheek <[EMAIL PROTECTED]> writes:
> further information:
>
> during a CD install i notice the cd is mounted and isofs.o has been loaded
> [then quickly unloaded]. the CD ejects using install_any::ejectCdrom()
> fine, but we can't get the 2nd cd to mount. now we are getting:
>
> mounting hdc on /tmp/cdimage as type iso9660
> calling mount(/dev/hdc, /tmp/cdimage, iso9660, 0, )
> warning: mount failed: Permission denied at /usr/bin/perl-install/fs.pm
> line 123.
you won't be able to do this with 7.0, in commands.pm of 7.0, you have:
fs::mount($dev, $where, $fs, 0, 1);
whereas it should be something like:
fs::mount($dev, $where, $fs, $r);
where $r says if tis readonly or not. See 7.1 for a working version (with option
"-r")