I need to mount an ISO image on Linux. On Windows I use Daemon Tools, but how is this done on Red Hat Enterprise Linux 5.4?

link|improve this question

71% accept rate
feedback

migrated from stackoverflow.com Mar 13 '10 at 18:47

This question came from our site for professional and enthusiast programmers.

1 Answer

up vote 11 down vote accepted
mount -t iso9660 -o loop FILE.ISO /place_to_mount
link|improve this answer
3  
And you have to be root. – dave Mar 13 '10 at 18:02
This is correct. @Neuquino: Mark tur1ng's answer as accepted once you verify it works. – Alexander Burke Mar 13 '10 at 21:17
3  
@dave if you mount it to a directory your user has access to, you do not need to be root for example "mkdir cdimage; mount -t iso9660 -o loop FILE.ISO cdimage" will work without needing to be root. – Justin Smith Mar 14 '10 at 0:50
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.