Mount an ISO Image in LinuxPosted by: Andrew SmithPoster contact info: andrew-smith at mail ru Author: same as 'Posted by' Software: Linux All You can mount an ISO image of a CD to your filesystem in linux. That means you can read files from the image without burning it onto a disk first. Make a directory to mount the image to, for example: mkdir /mnt/isoMount the image: mount image.iso /mnt/iso -o loop,roIf you get a 'you must specify the filesystem type' or 'Permission denied' error, you probably forgot or mistyped the -o loop,ro part.Have fun. This will be read onlyPosted by: DokmaPoster contact info: mrdokma@gmail.com Author: same as 'Posted by' Software: acetoneiso 1.0 Note that this will mount the ISO read only. If you want editing capabilities you can check out a few ways in this article: http://www.docplanet.org/linux/mount-an-iso-image-in-linux/ ISO MasterPosted by: Andrew SmithPoster contact info: andrew-smith at mail ru Author: same as 'Posted by' Software: ISO Master 1.3.7 For editing ISOs on Linux there's a nice program called ISO Master :) http://www.littlesvr.ca/isomaster/download/ |