<?xml version="1.0"?>
<rss version="2.0">
  <channel>
    <title><![CDATA[Easy mounting of Images like ISO and CUE]]></title>
    <link>http://brainstorm.ubuntu.com/item/194/</link>
    <description><![CDATA[I'm a big fan of Images like .iso. However it is not very easy to mount these Images. <br />
<br />


<b>[5716 votes] Solution #1: Auto-generated solution of idea #194</b>
<br />

<br />
<br />



<b>[691 votes] Solution #2: "Mount Image" avaiable in Right-Click Menu</b>
<br />

<br />
<br />



<b>[-16 votes] Solution #3: Spruce up gisomount and extend</b>
<br />

<br />
<br />



<b>[0 votes] Solution #4: gmount-iso</b>
<br />

<br />
<br />



<b>[40 votes] Solution #6: Make it possible to mount ISO image from CLI w/o root access</b>
<br />

<br />
<br />



<b>[-71 votes] Solution #7: Solution #3: Mount it automatically once the user double-clicks the ISO file</b>
<br />

<br />
<br />



<b>[-12 votes] Solution #8: Okay, here it is :)</b>
<br />

<br />
<br />



<b>[-44 votes] Solution #9: Drag *.iso icon onto computer/desktop/places</b>
<br />

<br />
<br />



]]></description>

    <language>en-us</language>
    <pubDate>Thu, 28 Feb 2008 20:17:06 +0000</pubDate>
    <lastBuildDate>Fri, 23 Oct 2009 06:42:08 +0000</lastBuildDate>
    <generator>QAPoll module</generator>
    <guid isPermaLink="true">http://brainstorm.ubuntu.com/idea/194/</guid>
        <item>
  <title>Comment from Ventsy</title>
  <description><![CDATA[It is not a big deal but it could be improved. I guess it is one of the easy to implement requests.<br />I like how is done in MacOS. ]]></description>
  <pubDate>Fri, 29 Feb 2008 00:16:05 +0000</pubDate>
</item>
        <item>
  <title>Comment from pynej</title>
  <description><![CDATA[Actually, this is really easy easy to implement. Here are the scripts that I use all the time.<br /><br />/usr/local/bin/isomnt<br />This bash script will mount or unmount an ISO file that you pass to it in the /media folder. <br />Example:<br />$-> isomnt myimage.iso<br />-----------------<br />#!/bin/bash<br /># ISO Mount/unmount Script<br /># Jeremy Pyne <br /># 01/09/2007<br />if [ -e "$*" ]; then<br />if [ -d /media/"$*" ]; then<br />  echo "Unmounting '$*'..."<br />  sudo umount -d /media/"$*"<br />  sudo rmdir /media/"$*"<br />else<br />  echo "Mounting '$*'..."<br />  sudo mkdir /media/"$*"<br />  sudo mount -o loop "$*" /media/"$*"<br />fi<br />else<br />  echo "No image found to mount."<br />fi<br />-----------------<br /><br /><br />~/.gnome2/nautilus-scripts/(Un)Mount ISO<br />This Nautilus script will mount or unmount an iso file when you right-click->Scripts->Mount, again to the media folder.<br />-----------------<br />#!/bin/bash<br /># ISO Mount/unmount Script (Nautilus)<br /># Jeremy Pyne <br /># 01/09/2007<br />if [ -d /media/"$*" ]; then<br />  gksudo ls /media<br />  sudo umount -d /media/"$*"<br />  sudo rmdir /media/"$*"<br />else<br />  gksudo mkdir /media/"$*"<br />  wd=$NAUTILUS_SCRIPT_CURRENT_URI#file://<br />  sudo mount -o loop "$wd/$*" /media/"$*"<br />fi<br />-----------------<br /><br />Feel free to use and abuse these scripts :P]]></description>
  <pubDate>Fri, 29 Feb 2008 01:00:15 +0000</pubDate>
</item>
        <item>
  <title>Comment from mm</title>
  <description><![CDATA[Take a look at the "fuseiso" package.<br /><br />http://fuse.sourceforge.net/wiki/index.php/FuseIso<br /><br />It supports lots of different image formats.<br />Maybe this could be integrated into nautilus.]]></description>
  <pubDate>Fri, 29 Feb 2008 01:14:34 +0000</pubDate>
</item>
        <item>
  <title>Comment from popi</title>
  <description><![CDATA[sudo mount /repertori/file.iso -o loop /media/iso<br />so you should use this comand by choosing favorite aplication<br />(fakeroot/gksudo) mount 0 -o loop /media/iso<br />need an existing folder /media/iso]]></description>
  <pubDate>Fri, 29 Feb 2008 01:33:54 +0000</pubDate>
</item>
        <item>
  <title>Comment from wolfier</title>
  <description><![CDATA[We all know the command lines are easy, but it wouldn't be the "Ubuntu way" of doing things do we?<br /><br />We have come a long way from just being a Debian branch.]]></description>
  <pubDate>Fri, 29 Feb 2008 01:59:35 +0000</pubDate>
</item>
        <item>
  <title>Comment from deejross</title>
  <description><![CDATA[I think the point is that it would be nice to have one of those methods implemented by default and easily accessible by those who don't want or are too afraid to write scripts or run commands at the terminal.]]></description>
  <pubDate>Fri, 29 Feb 2008 02:00:50 +0000</pubDate>
</item>
        <item>
  <title>Comment from icechen1</title>
  <description><![CDATA[There is a program called Gmount-iso which do this with a GUI.]]></description>
  <pubDate>Fri, 29 Feb 2008 02:38:40 +0000</pubDate>
</item>
        <item>
  <title>Comment from carlinuxlearner</title>
  <description><![CDATA[Also it would be nice if it would give you the option of mounting it automatically at boot time. Like if you wanted a ISO to always be mounted (The Ubuntu installation DVD for instance) And an option for you to STOP it from being auto mounted.]]></description>
  <pubDate>Fri, 29 Feb 2008 02:38:53 +0000</pubDate>
</item>
        <item>
  <title>Comment from rigrig</title>
  <description><![CDATA[I think it should definitely be possible to simply mount .ISO images from Nautilus(/Konqueror/Thunar), it should probably be the default(double-click) action, although opening it in Archive Manager seems logical as well.<br />It would also be nice if you didn't need root privileges to do this, since you can open the file in Archive Manager anyway.<br />I'm not sure how stable the cdemu project is, but it would be nice to make use of that to mount other image formats besides .ISO as well.]]></description>
  <pubDate>Fri, 29 Feb 2008 02:43:38 +0000</pubDate>
</item>
        <item>
  <title>Comment from hackel</title>
  <description><![CDATA[I voted no for this, because in my opinion, the default action that makes most sense is to open the image in an application to BURN it to a CD.  This is certainly what I do most often with ISO's.  Other than that, I don't even use them myself.<br /><br />I do believe, however, that it is a must for ISO files to have a context (right-click) option to mount the image automagically.]]></description>
  <pubDate>Fri, 29 Feb 2008 03:29:34 +0000</pubDate>
</item>
        <item>
  <title>Comment from exactopposite</title>
  <description><![CDATA[This would be very useful for times when you want to access the contents of a disk image file without actualy burning it to disk.]]></description>
  <pubDate>Fri, 29 Feb 2008 05:38:59 +0000</pubDate>
</item>
        <item>
  <title>Comment from zigzed</title>
  <description><![CDATA[I agree because it's not very difficult to implement and more user friendly.]]></description>
  <pubDate>Fri, 29 Feb 2008 08:55:40 +0000</pubDate>
</item>
        <item>
  <title>Comment from nathan_s</title>
  <description><![CDATA[Right, I think we all agree there are three "sane" actions to perform when someone double-clicks on an image file:<br /><br /><br />* mount it as a virtual optical drive<br />* open it in Archive Manager<br />* burn it to blank optical media<br /><br />I believe options 1 and 2 are functionally the same for most users ("Hey, now I can browse the files."). Regardless, it should be trivial to change the default action.<br /><br />How about asking the user the first time?  Pop up a dialog asking:<br /><br /><br />"This file contains a [CD/DVD/Double-sided DVD/whatever, based on size] image.  What should I do?<br /><br />Pretend it's a real [CD/DVD/etc]<br />Open it in Archive Manager<br />Burn it to a real [CD/DVD/etc]<br /><br />[] Always do this with [CDs/DVDs/etc] images. This setting can be changed later through ."<br /><br /><br />And of course an appropriate setting would be added in the UI.  This would enable the user to, for instance, burn a CD but mount a DVD (assuming they have a combo drive).]]></description>
  <pubDate>Fri, 29 Feb 2008 10:06:45 +0000</pubDate>
</item>
        <item>
  <title>Comment from jacen-me</title>
  <description><![CDATA[We could use a Nautilus script like the proposed one, implemented by the right Click but the user can't confirm sudo password every time he mounts an image. It must be automatic.]]></description>
  <pubDate>Fri, 29 Feb 2008 10:10:47 +0000</pubDate>
</item>
        <item>
  <title>Comment from KeyserSoze93</title>
  <description><![CDATA[I'm using Kubuntu with this service menu:<br />http://www.kde-apps.org/content/show.php/fuseisomount?content=46146<br /><br />Since it is using fuseiso, it allows user ISO mounting without needing to sudo...]]></description>
  <pubDate>Fri, 29 Feb 2008 10:25:05 +0000</pubDate>
</item>
        <item>
  <title>Comment from ZorbaTHut</title>
  <description><![CDATA[Another question would be, why should this require sudo or any sort of root access? Mounting a disk image should be doable entirely in userland. (I recognize that this is difficult today, but there's no reason mounting should need root access - it's just another of the "doing it this way is easier" things that lead to the hideous situation with Windows permissions.)]]></description>
  <pubDate>Fri, 29 Feb 2008 11:44:17 +0000</pubDate>
</item>
        <item>
  <title>Comment from Eldmannen</title>
  <description><![CDATA[Very cool idea. :)]]></description>
  <pubDate>Fri, 29 Feb 2008 13:52:01 +0000</pubDate>
</item>
        <item>
  <title>Comment from Zootropo</title>
  <description><![CDATA[I wrote a Nautilus Script some time ago to mount and unmount ISO images from the Nautilus menu:<br /><br /><br />http://mundogeek.net/nautilus-scripts/#nautilus-mount-image]]></description>
  <pubDate>Fri, 29 Feb 2008 14:16:19 +0000</pubDate>
</item>
        <item>
  <title>Comment from brettalton</title>
  <description><![CDATA[I attached this ubuntuforums.org thread: http://ubuntuforums.org/showthread.php?t=87369]]></description>
  <pubDate>Fri, 29 Feb 2008 16:17:33 +0000</pubDate>
</item>
        <item>
  <title>Comment from duriel</title>
  <description><![CDATA[I agree with most people that mounting ISO files is easy enough, though not obvious. There must be a GUI tool for this.<br /><br />But one thing i am looking for is a "daemon tools" for linux.<br />It must support mdf files most importantly, as converting 4-7 gb images to iso format is not fun.<br /><br />any other image format support will not hurt either.<br /><br />]]></description>
  <pubDate>Fri, 29 Feb 2008 18:39:44 +0000</pubDate>
</item>
        <item>
  <title>Comment from rawsausage</title>
  <description><![CDATA[Afaik there exists already a Gnome virtual fs plugin for this. It handles at least iso's perfectly, I have used it for several times some time ago. If not, this is a place for making new GVFS plugin :-)]]></description>
  <pubDate>Fri, 29 Feb 2008 21:37:32 +0000</pubDate>
</item>
        <item>
  <title>Comment from akiratheoni</title>
  <description><![CDATA[I mount ISOs quite often because I don't want to burn it to a disc... this is a very good idea, I like it.]]></description>
  <pubDate>Fri, 29 Feb 2008 21:37:36 +0000</pubDate>
</item>
        <item>
  <title>Comment from Hagar</title>
  <description><![CDATA[Gmount-iso is already here. Its not one click mount, but still quite easy (right click on iso 'open in gmount-iso', then choose location to mount, click mount button - done). Maybe small upgrades to that application would solve all problems.<br />1. allowing to auto mount lets say inside /tmp and auto open file browser<br /><br />Lets say we install gmount-iso open it then select 'allow automount' checkbox. After that whenever you right click on iso image and choose 'open in gmount-iso' gmount automatically mount in /tmp/isoname and show you files.<br /><br />2. support for other formats]]></description>
  <pubDate>Fri, 29 Feb 2008 23:28:07 +0000</pubDate>
</item>
        <item>
  <title>Comment from handy</title>
  <description><![CDATA[I used the following How-To on the Ubuntu forums & am very happy with the result:<br /><br />http://ubuntuforums.org/showthread.php?t=704350<br /><br />I think it is certainly a very useful ability to be able to mount/unmount from the RMB menu.]]></description>
  <pubDate>Sat, 01 Mar 2008 03:24:31 +0000</pubDate>
</item>
        <item>
  <title>Comment from arbitrix</title>
  <description><![CDATA[if not too much off-topic: easy mounting of JFFS images would be nice too]]></description>
  <pubDate>Sat, 01 Mar 2008 07:14:08 +0000</pubDate>
</item>
        <item>
  <title>Comment from franlade</title>
  <description><![CDATA[No scripts needed !!!!!!!<br />Use Gmount-iso !!!!!!!<br />]]></description>
  <pubDate>Sat, 01 Mar 2008 08:10:54 +0000</pubDate>
</item>
        <item>
  <title>Comment from Boobek</title>
  <description><![CDATA[or gisomount...]]></description>
  <pubDate>Sat, 01 Mar 2008 14:10:23 +0000</pubDate>
</item>
        <item>
  <title>Comment from jamesw</title>
  <description><![CDATA[Hi all,<br /><br />This was requested last year in the gnome bugzilla, bug<br />442191, but it has received no response yet.<br /><br />James<br />]]></description>
  <pubDate>Sat, 01 Mar 2008 15:44:35 +0000</pubDate>
</item>
        <item>
  <title>Comment from sourcejedi</title>
  <description><![CDATA[Seems fairly natural to me.  If you can plug in a USB stick with an ISO filesystem, there's no reason why you couldn't "plug in" a .iso file...<br /><br />]]></description>
  <pubDate>Sat, 01 Mar 2008 17:08:16 +0000</pubDate>
</item>
        <item>
  <title>Comment from dan.fernandez</title>
  <description><![CDATA[I don't think gnomevfs is a good way to solve this. The answer to this problem should be desktop independent, since we are talking about accesing a type of disk -virtual, yes- legacy applications could/will need to use. Fuse looks like a better way to do it.<br /><br />Besides, it's a lost of time doing it gnome way instead of general way, since the fix should then need to be ported to kubuntu, xubuntu, mythbuntu...]]></description>
  <pubDate>Sun, 02 Mar 2008 21:30:17 +0000</pubDate>
</item>
        <item>
  <title>Comment from tomatz</title>
  <description><![CDATA[er you can already do this by mouse 2 "mount image"]]></description>
  <pubDate>Sun, 02 Mar 2008 22:30:22 +0000</pubDate>
</item>
        <item>
  <title>Comment from cantormath</title>
  <description><![CDATA[This is very easy to do.  The ubuntu devs cant fix user-errors like this.]]></description>
  <pubDate>Sun, 02 Mar 2008 22:38:46 +0000</pubDate>
</item>
        <item>
  <title>Comment from icampana</title>
  <description><![CDATA[You should check out this project:<br /><br />https://launchpad.net/nautilus-mount-image/<br /><br />It is already in launchpad, I have tested and it work pretty fine, just right click, mount and you are ready to go, handled just like a pendrive.<br /><br />Unmount when you don't want to use it and that's all, simple and could be easily added to the repositories, just a click away, I wouldn't bundle it with the default installation since not everybody want's to mount iso images.]]></description>
  <pubDate>Mon, 03 Mar 2008 00:31:33 +0000</pubDate>
</item>
        <item>
  <title>Comment from mniess</title>
  <description><![CDATA[Everyone is only speaking of ISO here. Think about all the other image formats which _can't_ be mounted out of the box. CDEmu is the way to go there. They have a nice light-weight kernel-module and a library that allow reading the images. It is all written with current standards in mind. <br /><br />The packages are already in REVU and have been worked on alot. So we can expect them to be in universe/multiverse by hardy+1 (intrepid?).]]></description>
  <pubDate>Mon, 03 Mar 2008 01:20:21 +0000</pubDate>
</item>
        <item>
  <title>Comment from LeonB</title>
  <description><![CDATA[It would be nice if there could be support for more formats than only iso.]]></description>
  <pubDate>Mon, 03 Mar 2008 06:29:06 +0000</pubDate>
</item>
        <item>
  <title>Comment from sin</title>
  <description><![CDATA[I'm using Kiso (Konqueror context menu) and it works great. It can mount images and convert them to and fro.]]></description>
  <pubDate>Mon, 03 Mar 2008 12:37:19 +0000</pubDate>
</item>
        <item>
  <title>Comment from Vadim P.</title>
  <description><![CDATA[Give this a try:<br /><br />http://www.gnomefiles.org/app.php?soft_id=2278 (although I suspect icampana got it covered)]]></description>
  <pubDate>Mon, 03 Mar 2008 15:53:53 +0000</pubDate>
</item>
        <item>
  <title>Comment from meastp</title>
  <description><![CDATA[Nautilus scripts does this.<br /><br />http://mundogeek.net/nautilus-scripts/#nautilus-mount-image]]></description>
  <pubDate>Mon, 03 Mar 2008 17:31:31 +0000</pubDate>
</item>
        <item>
  <title>Comment from quinthar</title>
  <description><![CDATA[This sounds like a decent idea, but seriously, is this really a top issue?  What fraction of users actually experience this, and would adding this feature really improve Ubuntu in the eyes of most users?  I'm thinking this issue just got the benefit of a couple days on the "front page" at the very start, despite actually being a pretty minor improvement targeted to a very small set of users.]]></description>
  <pubDate>Tue, 04 Mar 2008 12:03:42 +0000</pubDate>
</item>
        <item>
  <title>Comment from YokoZar</title>
  <description><![CDATA[Would a context menu for .bin files to convert them to .iso be appropriate?<br /><br />This might not be so important if we could just mount .bin files straight (perhaps with CDEmu), but even then it might have some utility.]]></description>
  <pubDate>Tue, 04 Mar 2008 12:09:51 +0000</pubDate>
</item>
        <item>
  <title>Comment from vicosanz</title>
  <description><![CDATA[I ever admire to Leopard for this tiny stuffs. A lot of tiny stuffs buils a great OS]]></description>
  <pubDate>Tue, 04 Mar 2008 20:45:32 +0000</pubDate>
</item>
        <item>
  <title>Comment from nathan_s</title>
  <description><![CDATA[Tiger did it too. The vast majority of .iso files don't need to be burned (an exception is boot CD/DVDs). If there was a persistent desktop icon for optical drives, you could:<br /><br />* Double-click to mount, transforming the .iso file into a CD-drive icon<br /><br />* Drag the .iso to the existing CD drive, initiating a burn]]></description>
  <pubDate>Wed, 12 Mar 2008 10:34:06 +0000</pubDate>
</item>
        <item>
  <title>Comment from browny_amiga</title>
  <description><![CDATA[YES!!! Finally somebody mentions it. We need this feature badly. <br /><br />----------<br /><br />>This sounds like a decent idea, but seriously, is this really a top issue? What fraction of users actually experience this, and would adding this feature really improve Ubuntu in the eyes of most users? I'm thinking this issue just got the benefit of a couple days on the "front page" at the very start, despite actually being a pretty minor improvement targeted to a very small set of users<br />----------------------<br /><br />Well, check it out, (the votes) does not seem a very small set of users. Quiet a lot of people use .ISO images for mounting. I know I do almost all the time in Windows. <br />Virtual FS is no way to go, it is not really in the OS and only in the frontend and as Kubuntu User, you would have extra work porting it for me. Also, every program needs a VFS plugin to work with it (and many don't especially app xzy that is unique in providing functionality zyxy), so I am no fan of virtual file systems for that reason.<br />]]></description>
  <pubDate>Thu, 13 Mar 2008 01:41:20 +0000</pubDate>
</item>
        <item>
  <title>Comment from quinthar</title>
  <description><![CDATA[browny: My theory as to why this only-somewhat-valuable feature gets so many positive votes is because:<br /><br />1) More people have voted on it, period<br />2) Most people vote yes (and simply don't vote on the nos)<br /><br />The reason (1) is true is because it's at the top of a bunch of lists, and thus just gets more visibility than hundreds of other ideas -- may of which probably affect more people in a more direct way.<br /><br />Most importantly, it was at the top of the *only* list for the first days (weeks?) of Brainstorm existing, meaning that in the first days it had a huge visibility advantage over the other ideas, and thus was given an insurmountable lead in votes (ensuring it always appears at the top of lists, and always gets more votes, etc).<br /><br />I think this is a serious problem that reduces the overall value of Brainstorm.  If you agree (or don't), consider my ideas for how to improve it here:<br /><br />http://brainstorm.ubuntu.com/contributor/quinthar/]]></description>
  <pubDate>Tue, 25 Mar 2008 01:06:13 +0000</pubDate>
</item>
        <item>
  <title>Comment from nami</title>
  <description><![CDATA[Mounting an iso should be as simple as right clicking the iso file and clicking mount...]]></description>
  <pubDate>Sun, 06 Apr 2008 10:32:38 +0000</pubDate>
</item>
        <item>
  <title>Comment from nitro182</title>
  <description><![CDATA[There are some programs that make this thing, but I think that an implementation in Nautilus it's better :D.<br /><br />The user "pynej", author of the 2nd comment, should create a blueprint and attach it into this page.<br /><br />Sorry if I made some mistakes with my (veeery) bad english.]]></description>
  <pubDate>Wed, 09 Apr 2008 12:01:16 +0000</pubDate>
</item>
        <item>
  <title>Comment from RussellGee</title>
  <description><![CDATA[gnome-mount could be included by default.Has a nice little GUI that does this.]]></description>
  <pubDate>Mon, 14 Apr 2008 19:35:01 +0000</pubDate>
</item>
        <item>
  <title>Comment from kenshiro</title>
  <description><![CDATA[For me gmountiso could be included by default. For Ubuntu and Xubuntu.<br />The problem is this: inexperienced users don't know not even what is a mount point and how make it. For some applications is necessary to make it on /media/cdrom*, don't everybody know this and some applications can to give some problems.<br />gmountiso may be give an "automake cdrom mountpoint" (option enabled by default), it creates automatically the first /media/cdrom* available after the CD/DVD Unit/s installed on the system (fstab) and use it for mountpoint.<br />Or load the iso image by means of MTAB like an USB FLASH DEVICE or like others removable device.<br />Goodbye.]]></description>
  <pubDate>Wed, 07 May 2008 14:34:43 +0000</pubDate>
</item>
        <item>
  <title>Comment from Bishounen</title>
  <description><![CDATA[We absolutely need a feature like this in Ubuntu.  Not only for .ISO files, but also for .bin, .cue and the many other image formats that are out there.<br /><br />Working with disk image files in Ubuntu is a real PITA if you are unfamiliar with writing scripts or working with the shell.  There really isn't any reason why we should have to go to the shell for something simple like mounting an image file.<br /><br />A few have mentioned gmountiso as an option.  The only problem with that is that gmountiso ONLY mounts .iso files, and ONLY comes in French.  So unless you speak and read French fluently, it's useless.  And if you need to mount something that isn't a .iso file, but is still an image, it's useless.  So gmountiso is not really a viable option for the majority of  Ubuntu users.<br /><br />A simple right-click menu, as others have suggested, would be best.  The choices of Open, Mount and Burn would also probably be the best options as well.  Although having the popup menu choices after double-click would be a nice addition as well.]]></description>
  <pubDate>Mon, 12 May 2008 21:00:07 +0000</pubDate>
</item>
        <item>
  <title>Comment from l0b0</title>
  <description><![CDATA[Adding my own script to the string of suggestions:<br />http://l0b0.net/blog/?p=117<br /><br />This script works in the shell and Nautilus, handles multiple files at the same time, and creates symlinks to the mount points named after the ISO files in the same directory as the ISO files.]]></description>
  <pubDate>Thu, 15 May 2008 15:22:00 +0000</pubDate>
</item>
        <item>
  <title>Comment from frederyk</title>
  <description><![CDATA[Not only iso/bin/cue files should be mountable. dmg, squashfs ,dd-dumps and other images should be importable like usb-sticks without root accont. <br />the best would be a point in the popup-menu with the right-click on the image. ]]></description>
  <pubDate>Thu, 03 Jul 2008 11:24:28 +0000</pubDate>
</item>
        <item>
  <title>Comment from grigio</title>
  <description><![CDATA[http://grigio.org/mount_iso_file_human_being<br /><br />A solution could be something like that with fuse iso]]></description>
  <pubDate>Fri, 04 Jul 2008 08:38:02 +0000</pubDate>
</item>
        <item>
  <title>Comment from jscinoz</title>
  <description><![CDATA[I must agree with what grigio and other's said, fuseiso would be the best way to go about this, firstly because it supports a whole bunch of image formats (iso, bin, mdf, img, nrg according to the description in synaptic), also because its FUSE you don't need root to (un)mount the image.<br /><br />Also, i think using GVFS for this is a bad idea, as this should be environment independent.<br /><br />Basically, implement it in nautilus so you can easily (un)mount an image by simply right clicking and choosing said option, which should be in the top level menu, not in the scripts submenu.]]></description>
  <pubDate>Thu, 31 Jul 2008 03:54:30 +0000</pubDate>
</item>
        <item>
  <title>Comment from waster</title>
  <description><![CDATA[So few useful comments on this important point.<br /><br />Some very basic use cases are impossible for most users, and time consuming for those command-line jockeys.<br /><br />E.g. play a DVD iso in a media player - this takes ten minutes of mounting, and reconfiguring mplayer/xine/whatever to point /dev/dvd to somewhere else<br /><br />This really should not require installing more apps, scripts, or command line. The words "quite simple" followed by some pasted shell script is completely unacceptable for >99.9% of the world's computer users.<br /><br />]]></description>
  <pubDate>Wed, 15 Oct 2008 15:10:44 +0000</pubDate>
</item>
        <item>
  <title>Comment from Endolith</title>
  <description><![CDATA[Currently you can right-click an ISO and select "Write to CD".  Why isn't there an option for "Mount as Drive"??]]></description>
  <pubDate>Thu, 30 Oct 2008 15:15:36 +0000</pubDate>
</item>
        <item>
  <title>Comment from Dinth</title>
  <description><![CDATA[What about CUE and other non-iso cdimage formats?<br /><br />GNOME users have cdemu frontend on launchpad, and what about KDE users ?]]></description>
  <pubDate>Fri, 07 Nov 2008 21:30:00 +0000</pubDate>
</item>
        <item>
  <title>Comment from jonathanmotes</title>
  <description><![CDATA[In Intrepid you can mount ISO images by right clicking on the image and selecting "Open with..."-> Open with "Archive Mounter". ]]></description>
  <pubDate>Sat, 08 Nov 2008 17:44:17 +0000</pubDate>
</item>
        <item>
  <title>Comment from Endolith</title>
  <description><![CDATA[<i>In Intrepid you can mount ISO images by right clicking on the image and selecting "Open with..."-> Open with "Archive Mounter".</i><br /><br />This doesn't work for me.  File names look like "SETUP.EXE;1" instead of "Setup.exe" and "SETUP_EX.MAN;1" instead of "Setup.exe.manifest"]]></description>
  <pubDate>Sun, 09 Nov 2008 15:51:31 +0000</pubDate>
</item>
        <item>
  <title>Comment from saivann</title>
  <description><![CDATA[This feature is now included in intrepid. If you get any problems with this new feature, please open bug reports in http://bugs.launchpad.net/ for gvfs package.<br /><br />Endolith : Your issue looks like bug 292963]]></description>
  <pubDate>Tue, 18 Nov 2008 07:00:58 +0000</pubDate>
</item>
        <item>
  <title>Comment from Endolith</title>
  <description><![CDATA[<i>This feature is now included in intrepid.</i><br /><br />See <a href="https://bugs.launchpad.net/ubuntu/+source/gvfs/+bug/213814/comments/3">comment on Launchpad</a>.  This is not enabled in Intrepid unless you go through the "Open with" menu, since it doesn't work with most apps.]]></description>
  <pubDate>Tue, 18 Nov 2008 16:20:41 +0000</pubDate>
</item>
        <item>
  <title>Comment from Dinth</title>
  <description><![CDATA[Saivann : What about CUE and other non-iso cdimage formats? <br /><br />That idea isnt included, is only partialy included, and that is big difference.<br /><br />ISO is maybe popular, but also simplest CD Image format and in 99% dont works with game CD backups - and that is one of most importants reason to mount CD Images. It doesnt makes sense to make ISO backups of software, if you must also install no-cd cracks to use them and with no-cd crack CD Image is useless :) (and installing nocd cracks might be piracy also)<br /><br />I dont want to say that ISO mounting is unimportant - its very important, but as first step to have complex CD Image mounting.]]></description>
  <pubDate>Tue, 18 Nov 2008 18:00:25 +0000</pubDate>
</item>
        <item>
  <title>Comment from Endolith</title>
  <description><![CDATA[This is not "Done".]]></description>
  <pubDate>Tue, 18 Nov 2008 20:00:25 +0000</pubDate>
</item>
        <item>
  <title>Comment from saivann</title>
  <description><![CDATA[Endolith : "See comment on Launchpad. This is not enabled in Intrepid unless you go through the "Open with" menu, since it doesn't work with most apps."<br /><br />It is enabled in default intrepid installation and it is available from the "Open with" menu, exactly. That fits in the initial idea description. The launchpad comment that you linked concerns Hardy.<br /><br />Dinth : Thanks for mentioning that CUE image are still not supported. According to your comment and since CUE is mentioned in the idea description, I set back this idea to "New". <br /><br />However, if GNOME does not plan to support it soon, this idea status should go back to "Implemented" and another idea should be posted to ask gvfs to support CUE and/or other image files formats.]]></description>
  <pubDate>Fri, 21 Nov 2008 04:43:00 +0000</pubDate>
</item>
        <item>
  <title>Comment from Endolith</title>
  <description><![CDATA[<i>It is enabled in default intrepid installation and it is available from the "Open with" menu, exactly.</i><br /><br />No, it was relegated to the "Open with" menu and a custom command because it's not working well enough to be a default feature. It's supposed to show up in the main right-click menu for mountable archives, but the support for different formats is very poor at this point.<br />]]></description>
  <pubDate>Fri, 21 Nov 2008 15:25:38 +0000</pubDate>
</item>
        <item>
  <title>Comment from eierdieb</title>
  <description><![CDATA[I'm going to mark it as implemented -> look@developers comment - and let them fix the bugs :)]]></description>
  <pubDate>Mon, 04 May 2009 14:47:25 +0000</pubDate>
</item>
      </channel>
</rss>
