Mount iso images - Printable Version +- Linux-Noob Forums (https://www.linux-noob.com/forums) +-- Forum: Linux Noob (https://www.linux-noob.com/forums/forum-3.html) +--- Forum: Tips and Tricks (https://www.linux-noob.com/forums/forum-59.html) +---- Forum: Filesystem Management (https://www.linux-noob.com/forums/forum-26.html) +---- Thread: Mount iso images (/thread-2191.html) |
Mount iso images - speX - 2006-02-02 yes as the topic title said... how do i mount iso images onto a virtual drive of some sort so that it can read the iso's contents so that i dont ahve to burn them to disks? wat program do i use? Mount iso images - znx - 2006-02-02 Code: mount -t iso9660 -o loop,user CD.iso /path/to/mount weee .. all you need is iso9660 support in your kernel (ie can you read cds :)) Mount iso images - speX - 2006-02-02 same thing if its a .cue or .bin image? Mount iso images - z0ny - 2006-02-02 Well, this only works with images that have only one data track. Most (all?) CUE/BIN images have several tracks. Use CDemu if you want to mount these. If there are movies on the disc you can play them directly with mplayer or xine: Code: mplayer cue://vcd.cue Mount iso images - speX - 2006-02-03 and how do i unmount? Mount iso images - znx - 2006-02-03 Code: umount /path/to/mount :) Mount iso images - speX - 2006-02-03 ahh simple enough thx :) |