This is the mail archive of the
cygwin
mailing list for the Cygwin project.
Re: Unable to mount .iso file
Keith Christian wrote:
> I've tried the following mount command and it fails:
>
> mount -t iso9660 -o,loop ./RHEL4-U5-x86_64-WS-disc1.iso /media
> mount: invalid option - ''
It's because of the mount syntax. Comma is the seperator for seperate
options, use a space to seperate the '-o' and the 'loop' (ie, this way
it will see an empty option between -o and loop, resulting in invalid
option ''). Try this:
mount -t ios9660 -o loop ./RHEL[...].iso /media
--
Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple
Problem reports: http://cygwin.com/problems.html
Documentation: http://cygwin.com/docs.html
FAQ: http://cygwin.com/faq/