<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: Mount and Unmout ISO images without burning them</title>
	<atom:link href="http://www.ubuntugeek.com/mount-and-unmout-iso-images-without-burning-them.html/feed" rel="self" type="application/rss+xml" />
	<link>http://www.ubuntugeek.com/mount-and-unmout-iso-images-without-burning-them.html</link>
	<description>Ubuntu Linux Tutorials,Howtos,Tips &#38; News &#124; Oneiric,Natty,Maverick</description>
	<lastBuildDate>Mon, 06 Feb 2012 15:40:01 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>By: imsamurai</title>
		<link>http://www.ubuntugeek.com/mount-and-unmout-iso-images-without-burning-them.html/comment-page-3#comment-111528</link>
		<dc:creator>imsamurai</dc:creator>
		<pubDate>Wed, 19 Oct 2011 07:30:07 +0000</pubDate>
		<guid isPermaLink="false">http://www.ubuntugeek.com/mount-and-unmout-iso-images-without-burning-them.html#comment-111528</guid>
		<description>no, i&#039;m wrong)

you must remove quotes from mount, umount, mkdir, rmdir, also use rmdir -rf

but still doesn&#039;t work from gui</description>
		<content:encoded><![CDATA[<p>no, i&#8217;m wrong)</p>
<p>you must remove quotes from mount, umount, mkdir, rmdir, also use rmdir -rf</p>
<p>but still doesn&#8217;t work from gui</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: imsamurai</title>
		<link>http://www.ubuntugeek.com/mount-and-unmout-iso-images-without-burning-them.html/comment-page-3#comment-111526</link>
		<dc:creator>imsamurai</dc:creator>
		<pubDate>Wed, 19 Oct 2011 07:18:39 +0000</pubDate>
		<guid isPermaLink="false">http://www.ubuntugeek.com/mount-and-unmout-iso-images-without-burning-them.html#comment-111526</guid>
		<description>also in mount.sh change:

sudo mkdir “/media/$BASENAME” 
to 
sudo mkdir -p “/media/$BASENAME”

works in 11.10</description>
		<content:encoded><![CDATA[<p>also in mount.sh change:</p>
<p>sudo mkdir “/media/$BASENAME”<br />
to<br />
sudo mkdir -p “/media/$BASENAME”</p>
<p>works in 11.10</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Bro</title>
		<link>http://www.ubuntugeek.com/mount-and-unmout-iso-images-without-burning-them.html/comment-page-3#comment-110162</link>
		<dc:creator>Bro</dc:creator>
		<pubDate>Wed, 28 Sep 2011 16:31:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.ubuntugeek.com/mount-and-unmout-iso-images-without-burning-them.html#comment-110162</guid>
		<description>Hi

I&#039;ve modified the scripts so that they work on Ubuntu 11.04. The problem was that the gksudo command will not enable the later sudo commands to work.
I modified the scripts to save the password and provide the password to the sudo commands executed later. Also modified the script to work when executed in a shell and added an option for disabling GUI in the shell as well as an option for opening Nautilus (ASK/YES/NO).

----- MOUNT.SH start ----
#!/bin/bash
# mount
OPEN_NAUTILUS=&quot;YES&quot;      # ASK/YES/NO
USE_GUI_IN_SHELL=&quot;NO&quot; # YES/NO

shopt -s expand_aliases
alias sudo=&#039;echo $pw &#124; sudo -S -p &quot;&quot;&#039;

# Run from shell
if [ -t 1 -a $USE_GUI_IN_SHELL = &quot;NO&quot; ]; then
	echo -n &quot;[sudo] password for $USER: &quot;
	stty_orig=`stty -g`
	stty -echo
	read pw
	stty $stty_orig
	# Echo newline
	echo &quot;&quot;
else
	pw=$(/usr/bin/gksudo -p --description &quot;ISO Mounter&quot;)
fi

if [ -z &quot;$NAUTILUS_SCRIPT_SELECTED_FILE_PATHS&quot; ]; then
	if [ -e $1 ]; then
		NAUTILUS_SCRIPT_SELECTED_FILE_PATHS=$1		
	else
		NAUTILUS_SCRIPT_SELECTED_FILE_PATHS=${PWD}/$1
	fi
fi

BASENAME=`basename $NAUTILUS_SCRIPT_SELECTED_FILE_PATHS .iso`

sudo mkdir &quot;/media/$BASENAME&quot;

if sudo mount -o loop -t iso9660 $NAUTILUS_SCRIPT_SELECTED_FILE_PATHS &quot;/media/$BASENAME&quot;
then
	if [ &quot;$OPEN_NAUTILUS&quot; = &quot;ASK&quot; ]; then
		if zenity --question --title &quot;ISO Mounter&quot; --text &quot;$BASENAME Successfully Mounted. Open Volume?&quot;
		then
			nautilus /media/&quot;$BASENAME&quot; --no-desktop
		fi
	elif [ &quot;$OPEN_NAUTILUS&quot; = &quot;YES&quot; ]; then
		nautilus /media/&quot;$BASENAME&quot; --no-desktop
	fi
	exit 0
else
	sudo rmdir &quot;/media/$BASENAME&quot;
	
	if [ $USE_GUI_IN_SHELL = &quot;YES&quot; ]; then
		zenity --error --title &quot;ISO Mounter&quot; --text &quot;Cannot mount $BASENAME!&quot;
	else
		echo &quot;Cannot mount $BASENAME!&quot;
	fi
	exit 1
fi

----- UNMOUNT.SH start ----
#!/bin/bash
# unmount
USE_GUI_IN_SHELL=&quot;NO&quot; # YES/NO

shopt -s expand_aliases
alias sudo=&#039;echo $pw &#124; sudo -S -p &quot;&quot;&#039;

# Run from shell
if [ -t 1 -a $USE_GUI_IN_SHELL = &quot;NO&quot; ]; then
	echo -n &quot;[sudo] password for $USER: &quot;
	stty_orig=`stty -g`
	stty -echo
	read pw
	stty $stty_orig
	# Echo newline
	echo &quot;&quot;
else
	pw=$(/usr/bin/gksudo -p --description &quot;ISO Mounter&quot;)
fi

if [ -z &quot;$NAUTILUS_SCRIPT_SELECTED_FILE_PATHS&quot; ]; then
	NAUTILUS_SCRIPT_SELECTED_FILE_PATHS=${PWD}/$1
fi

BASENAME=`basename $NAUTILUS_SCRIPT_SELECTED_FILE_PATHS .iso`

sudo umount &quot;/media/$BASENAME&quot;
umount_res=$?
sudo rmdir &quot;/media/$BASENAME&quot;
rmdir_res=$?

if [ $umount_res -eq 1 ]; then
	if [ $USE_GUI_IN_SHELL = &quot;YES&quot; ]; then
		zenity --info --text &quot;Failed to umount /media/$BASENAME&quot;
	else
		echo &quot;Failed to umount /media/$BASENAME&quot;
	fi
elif [ $rmdir_res -eq 1 ]; then
	if [ $USE_GUI_IN_SHELL = &quot;YES&quot; ]; then
		zenity --info --text &quot;Failed to remove directory /media/$BASENAME&quot;
	else
		echo &quot;Failed to remove directory /media/$BASENAME&quot;
	fi
fi
exit 0</description>
		<content:encoded><![CDATA[<p>Hi</p>
<p>I&#8217;ve modified the scripts so that they work on Ubuntu 11.04. The problem was that the gksudo command will not enable the later sudo commands to work.<br />
I modified the scripts to save the password and provide the password to the sudo commands executed later. Also modified the script to work when executed in a shell and added an option for disabling GUI in the shell as well as an option for opening Nautilus (ASK/YES/NO).</p>
<p>----- MOUNT.SH start ----<br />
#!/bin/bash<br />
# mount<br />
OPEN_NAUTILUS=&#8221;YES&#8221;      # ASK/YES/NO<br />
USE_GUI_IN_SHELL=&#8221;NO&#8221; # YES/NO</p>
<p>shopt -s expand_aliases<br />
alias sudo=&#8217;echo $pw | sudo -S -p &#8220;&#8221;&#8216;</p>
<p># Run from shell<br />
if [ -t 1 -a $USE_GUI_IN_SHELL = "NO" ]; then<br />
	echo -n &#8220;[sudo] password for $USER: &#8221;<br />
	stty_orig=`stty -g`<br />
	stty -echo<br />
	read pw<br />
	stty $stty_orig<br />
	# Echo newline<br />
	echo &#8220;&#8221;<br />
else<br />
	pw=$(/usr/bin/gksudo -p --description &#8220;ISO Mounter&#8221;)<br />
fi</p>
<p>if [ -z "$NAUTILUS_SCRIPT_SELECTED_FILE_PATHS" ]; then<br />
	if [ -e $1 ]; then<br />
		NAUTILUS_SCRIPT_SELECTED_FILE_PATHS=$1<br />
	else<br />
		NAUTILUS_SCRIPT_SELECTED_FILE_PATHS=${PWD}/$1<br />
	fi<br />
fi</p>
<p>BASENAME=`basename $NAUTILUS_SCRIPT_SELECTED_FILE_PATHS .iso`</p>
<p>sudo mkdir &#8220;/media/$BASENAME&#8221;</p>
<p>if sudo mount -o loop -t iso9660 $NAUTILUS_SCRIPT_SELECTED_FILE_PATHS &#8220;/media/$BASENAME&#8221;<br />
then<br />
	if [ "$OPEN_NAUTILUS" = "ASK" ]; then<br />
		if zenity --question --title &#8220;ISO Mounter&#8221; --text &#8220;$BASENAME Successfully Mounted. Open Volume?&#8221;<br />
		then<br />
			nautilus /media/&#8221;$BASENAME&#8221; --no-desktop<br />
		fi<br />
	elif [ "$OPEN_NAUTILUS" = "YES" ]; then<br />
		nautilus /media/&#8221;$BASENAME&#8221; --no-desktop<br />
	fi<br />
	exit 0<br />
else<br />
	sudo rmdir &#8220;/media/$BASENAME&#8221;</p>
<p>	if [ $USE_GUI_IN_SHELL = "YES" ]; then<br />
		zenity --error --title &#8220;ISO Mounter&#8221; --text &#8220;Cannot mount $BASENAME!&#8221;<br />
	else<br />
		echo &#8220;Cannot mount $BASENAME!&#8221;<br />
	fi<br />
	exit 1<br />
fi</p>
<p>----- UNMOUNT.SH start ----<br />
#!/bin/bash<br />
# unmount<br />
USE_GUI_IN_SHELL=&#8221;NO&#8221; # YES/NO</p>
<p>shopt -s expand_aliases<br />
alias sudo=&#8217;echo $pw | sudo -S -p &#8220;&#8221;&#8216;</p>
<p># Run from shell<br />
if [ -t 1 -a $USE_GUI_IN_SHELL = "NO" ]; then<br />
	echo -n &#8220;[sudo] password for $USER: &#8221;<br />
	stty_orig=`stty -g`<br />
	stty -echo<br />
	read pw<br />
	stty $stty_orig<br />
	# Echo newline<br />
	echo &#8220;&#8221;<br />
else<br />
	pw=$(/usr/bin/gksudo -p --description &#8220;ISO Mounter&#8221;)<br />
fi</p>
<p>if [ -z "$NAUTILUS_SCRIPT_SELECTED_FILE_PATHS" ]; then<br />
	NAUTILUS_SCRIPT_SELECTED_FILE_PATHS=${PWD}/$1<br />
fi</p>
<p>BASENAME=`basename $NAUTILUS_SCRIPT_SELECTED_FILE_PATHS .iso`</p>
<p>sudo umount &#8220;/media/$BASENAME&#8221;<br />
umount_res=$?<br />
sudo rmdir &#8220;/media/$BASENAME&#8221;<br />
rmdir_res=$?</p>
<p>if [ $umount_res -eq 1 ]; then<br />
	if [ $USE_GUI_IN_SHELL = "YES" ]; then<br />
		zenity --info --text &#8220;Failed to umount /media/$BASENAME&#8221;<br />
	else<br />
		echo &#8220;Failed to umount /media/$BASENAME&#8221;<br />
	fi<br />
elif [ $rmdir_res -eq 1 ]; then<br />
	if [ $USE_GUI_IN_SHELL = "YES" ]; then<br />
		zenity --info --text &#8220;Failed to remove directory /media/$BASENAME&#8221;<br />
	else<br />
		echo &#8220;Failed to remove directory /media/$BASENAME&#8221;<br />
	fi<br />
fi<br />
exit 0</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: vfcloud</title>
		<link>http://www.ubuntugeek.com/mount-and-unmout-iso-images-without-burning-them.html/comment-page-3#comment-107879</link>
		<dc:creator>vfcloud</dc:creator>
		<pubDate>Tue, 09 Aug 2011 22:08:28 +0000</pubDate>
		<guid isPermaLink="false">http://www.ubuntugeek.com/mount-and-unmout-iso-images-without-burning-them.html#comment-107879</guid>
		<description>Very useful iso mount command. THX!</description>
		<content:encoded><![CDATA[<p>Very useful iso mount command. THX!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Lag</title>
		<link>http://www.ubuntugeek.com/mount-and-unmout-iso-images-without-burning-them.html/comment-page-3#comment-107488</link>
		<dc:creator>Lag</dc:creator>
		<pubDate>Tue, 02 Aug 2011 05:27:38 +0000</pubDate>
		<guid isPermaLink="false">http://www.ubuntugeek.com/mount-and-unmout-iso-images-without-burning-them.html#comment-107488</guid>
		<description>I am now unable to mount anything after doing these steps. It&#039;s obviously my wrongdoing . however I am not alone in this error so that makes me feel a little better. Is there a solution to this problem yet? I&#039;ve been looking at the comments but nothing comes up.  Help wanted?</description>
		<content:encoded><![CDATA[<p>I am now unable to mount anything after doing these steps. It&#8217;s obviously my wrongdoing . however I am not alone in this error so that makes me feel a little better. Is there a solution to this problem yet? I&#8217;ve been looking at the comments but nothing comes up.  Help wanted?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Vinny</title>
		<link>http://www.ubuntugeek.com/mount-and-unmout-iso-images-without-burning-them.html/comment-page-3#comment-102920</link>
		<dc:creator>Vinny</dc:creator>
		<pubDate>Sun, 01 May 2011 12:01:03 +0000</pubDate>
		<guid isPermaLink="false">http://www.ubuntugeek.com/mount-and-unmout-iso-images-without-burning-them.html#comment-102920</guid>
		<description>Looping Kernel Module worked perfect for me although I have no idea what negative effects it is having on the system if any. Which method is preferable and why?</description>
		<content:encoded><![CDATA[<p>Looping Kernel Module worked perfect for me although I have no idea what negative effects it is having on the system if any. Which method is preferable and why?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Logan</title>
		<link>http://www.ubuntugeek.com/mount-and-unmout-iso-images-without-burning-them.html/comment-page-3#comment-93633</link>
		<dc:creator>Logan</dc:creator>
		<pubDate>Wed, 02 Mar 2011 12:59:43 +0000</pubDate>
		<guid isPermaLink="false">http://www.ubuntugeek.com/mount-and-unmout-iso-images-without-burning-them.html#comment-93633</guid>
		<description>I tried the Nautilus Scripts but it fails to mount the file. Can you tell me why. I am using Ubuntu 10.04</description>
		<content:encoded><![CDATA[<p>I tried the Nautilus Scripts but it fails to mount the file. Can you tell me why. I am using Ubuntu 10.04</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Chimeric</title>
		<link>http://www.ubuntugeek.com/mount-and-unmout-iso-images-without-burning-them.html/comment-page-3#comment-84905</link>
		<dc:creator>Chimeric</dc:creator>
		<pubDate>Tue, 21 Dec 2010 02:55:59 +0000</pubDate>
		<guid isPermaLink="false">http://www.ubuntugeek.com/mount-and-unmout-iso-images-without-burning-them.html#comment-84905</guid>
		<description>Incredibly helpful about the mounting. THANKS!</description>
		<content:encoded><![CDATA[<p>Incredibly helpful about the mounting. THANKS!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: K Patki</title>
		<link>http://www.ubuntugeek.com/mount-and-unmout-iso-images-without-burning-them.html/comment-page-3#comment-57497</link>
		<dc:creator>K Patki</dc:creator>
		<pubDate>Sun, 14 Nov 2010 12:31:14 +0000</pubDate>
		<guid isPermaLink="false">http://www.ubuntugeek.com/mount-and-unmout-iso-images-without-burning-them.html#comment-57497</guid>
		<description>Hi
I&#039;m using Ubuntu 10.04. I tried the Nautilus Scripts method to mount iso files.
Two problems have come up because of this:
a) Iso fies are unable to be mounted. (i.e. it doesn&#039;t work!)
b) My usb flash drive, CD / DVD rom also does not work. An error message &quot;Cannot mount &quot;.
But the icon shows up in the &quot;Places&quot; menu.
Please help. I don&#039;t know how to revert back to the settings before I performed the steps given in the post.</description>
		<content:encoded><![CDATA[<p>Hi<br />
I&#8217;m using Ubuntu 10.04. I tried the Nautilus Scripts method to mount iso files.<br />
Two problems have come up because of this:<br />
a) Iso fies are unable to be mounted. (i.e. it doesn&#8217;t work!)<br />
b) My usb flash drive, CD / DVD rom also does not work. An error message &#8220;Cannot mount &#8220;.<br />
But the icon shows up in the &#8220;Places&#8221; menu.<br />
Please help. I don&#8217;t know how to revert back to the settings before I performed the steps given in the post.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: T Williams</title>
		<link>http://www.ubuntugeek.com/mount-and-unmout-iso-images-without-burning-them.html/comment-page-3#comment-54755</link>
		<dc:creator>T Williams</dc:creator>
		<pubDate>Mon, 25 Oct 2010 23:39:10 +0000</pubDate>
		<guid isPermaLink="false">http://www.ubuntugeek.com/mount-and-unmout-iso-images-without-burning-them.html#comment-54755</guid>
		<description>I need to import email messages FROM Evolution To Thunderbird. Can anyone help me?</description>
		<content:encoded><![CDATA[<p>I need to import email messages FROM Evolution To Thunderbird. Can anyone help me?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Drakezilla</title>
		<link>http://www.ubuntugeek.com/mount-and-unmout-iso-images-without-burning-them.html/comment-page-2#comment-50315</link>
		<dc:creator>Drakezilla</dc:creator>
		<pubDate>Fri, 01 Oct 2010 14:24:20 +0000</pubDate>
		<guid isPermaLink="false">http://www.ubuntugeek.com/mount-and-unmout-iso-images-without-burning-them.html#comment-50315</guid>
		<description>excellent script, only one thing ...the ISO file&#039;s name should not contain blank spaces... you get an error if any</description>
		<content:encoded><![CDATA[<p>excellent script, only one thing &#8230;the ISO file&#8217;s name should not contain blank spaces&#8230; you get an error if any</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Neo Anderson</title>
		<link>http://www.ubuntugeek.com/mount-and-unmout-iso-images-without-burning-them.html/comment-page-2#comment-45300</link>
		<dc:creator>Neo Anderson</dc:creator>
		<pubDate>Sun, 29 Aug 2010 14:37:44 +0000</pubDate>
		<guid isPermaLink="false">http://www.ubuntugeek.com/mount-and-unmout-iso-images-without-burning-them.html#comment-45300</guid>
		<description>Is there any prob with the $BASENAME variable?
I can&#039;t get an echo out of it after the step:
BASENAME=`basename $NAUTILUS_SCRIPT_SELECTED_FILE_PATHS .iso`
why is this?
am using lucid</description>
		<content:encoded><![CDATA[<p>Is there any prob with the $BASENAME variable?<br />
I can&#8217;t get an echo out of it after the step:<br />
BASENAME=`basename $NAUTILUS_SCRIPT_SELECTED_FILE_PATHS .iso`<br />
why is this?<br />
am using lucid</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Neo Anderson</title>
		<link>http://www.ubuntugeek.com/mount-and-unmout-iso-images-without-burning-them.html/comment-page-2#comment-41525</link>
		<dc:creator>Neo Anderson</dc:creator>
		<pubDate>Wed, 28 Jul 2010 16:23:34 +0000</pubDate>
		<guid isPermaLink="false">http://www.ubuntugeek.com/mount-and-unmout-iso-images-without-burning-them.html#comment-41525</guid>
		<description>It is not working in Lucid Lynx. Shows &quot;cannot Mount iso&quot;! do you have this scripts&#039; latest versions?</description>
		<content:encoded><![CDATA[<p>It is not working in Lucid Lynx. Shows &#8220;cannot Mount iso&#8221;! do you have this scripts&#8217; latest versions?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dustin</title>
		<link>http://www.ubuntugeek.com/mount-and-unmout-iso-images-without-burning-them.html/comment-page-2#comment-41377</link>
		<dc:creator>Dustin</dc:creator>
		<pubDate>Sun, 25 Jul 2010 21:52:57 +0000</pubDate>
		<guid isPermaLink="false">http://www.ubuntugeek.com/mount-and-unmout-iso-images-without-burning-them.html#comment-41377</guid>
		<description>Brilliant tutorial! thanks alot!</description>
		<content:encoded><![CDATA[<p>Brilliant tutorial! thanks alot!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: priyaranjan</title>
		<link>http://www.ubuntugeek.com/mount-and-unmout-iso-images-without-burning-them.html/comment-page-2#comment-41294</link>
		<dc:creator>priyaranjan</dc:creator>
		<pubDate>Sat, 24 Jul 2010 15:41:05 +0000</pubDate>
		<guid isPermaLink="false">http://www.ubuntugeek.com/mount-and-unmout-iso-images-without-burning-them.html#comment-41294</guid>
		<description>works gr8.. thnx</description>
		<content:encoded><![CDATA[<p>works gr8.. thnx</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: let it be</title>
		<link>http://www.ubuntugeek.com/mount-and-unmout-iso-images-without-burning-them.html/comment-page-2#comment-41214</link>
		<dc:creator>let it be</dc:creator>
		<pubDate>Fri, 23 Jul 2010 10:42:02 +0000</pubDate>
		<guid isPermaLink="false">http://www.ubuntugeek.com/mount-and-unmout-iso-images-without-burning-them.html#comment-41214</guid>
		<description>O_o. Great! Thanks</description>
		<content:encoded><![CDATA[<p>O_o. Great! Thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: oDesk</title>
		<link>http://www.ubuntugeek.com/mount-and-unmout-iso-images-without-burning-them.html/comment-page-2#comment-41123</link>
		<dc:creator>oDesk</dc:creator>
		<pubDate>Wed, 21 Jul 2010 14:42:36 +0000</pubDate>
		<guid isPermaLink="false">http://www.ubuntugeek.com/mount-and-unmout-iso-images-without-burning-them.html#comment-41123</guid>
		<description>well done</description>
		<content:encoded><![CDATA[<p>well done</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Surya</title>
		<link>http://www.ubuntugeek.com/mount-and-unmout-iso-images-without-burning-them.html/comment-page-2#comment-35436</link>
		<dc:creator>Surya</dc:creator>
		<pubDate>Fri, 18 Jun 2010 14:50:42 +0000</pubDate>
		<guid isPermaLink="false">http://www.ubuntugeek.com/mount-and-unmout-iso-images-without-burning-them.html#comment-35436</guid>
		<description>It works... 


Thanks...</description>
		<content:encoded><![CDATA[<p>It works&#8230; </p>
<p>Thanks&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Alex</title>
		<link>http://www.ubuntugeek.com/mount-and-unmout-iso-images-without-burning-them.html/comment-page-2#comment-33422</link>
		<dc:creator>Alex</dc:creator>
		<pubDate>Mon, 07 Jun 2010 21:30:22 +0000</pubDate>
		<guid isPermaLink="false">http://www.ubuntugeek.com/mount-and-unmout-iso-images-without-burning-them.html#comment-33422</guid>
		<description>Thank you for the information this was very helpful !!!</description>
		<content:encoded><![CDATA[<p>Thank you for the information this was very helpful !!!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: TannerS</title>
		<link>http://www.ubuntugeek.com/mount-and-unmout-iso-images-without-burning-them.html/comment-page-2#comment-27798</link>
		<dc:creator>TannerS</dc:creator>
		<pubDate>Sat, 17 Apr 2010 07:06:36 +0000</pubDate>
		<guid isPermaLink="false">http://www.ubuntugeek.com/mount-and-unmout-iso-images-without-burning-them.html#comment-27798</guid>
		<description>I could not unmount it, once it had to fix it some other way every time I turn on ym pc

/media/cdrom0 opens with our without cd in drive

can anyone tell me what to do?</description>
		<content:encoded><![CDATA[<p>I could not unmount it, once it had to fix it some other way every time I turn on ym pc</p>
<p>/media/cdrom0 opens with our without cd in drive</p>
<p>can anyone tell me what to do?</p>
]]></content:encoded>
	</item>
</channel>
</rss>

