On Wed, 2002-10-09 at 12:36, Doug Foskey wrote: > Newbie Q: How do I mount an image file so I can access the files? (ie I want > to mount '/~.../crap.img' to '/mnt/img1' )
This a really cool thing to be able to do. You may need to be root to mount it (I do): root@host# mount ~/crap.img /mnt/img1 -t iso9660 -o loop The key is the loopback device. > Also if I wish to do this frequently can I add it to /etc/fstab? Should be no problem. -- ************** * Simon Wong * ************** -- SLUG - Sydney Linux User's Group - http://slug.org.au/ More Info: http://lists.slug.org.au/listinfo/slug
