<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>My Blog &#187; iso</title>
	<atom:link href="http://blog.wianecki.com/tag/iso/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.wianecki.com</link>
	<description>my own personal blog</description>
	<lastBuildDate>Thu, 09 Feb 2012 15:39:58 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=</generator>
		<item>
		<title>How to: Mount an ISO image under Linux</title>
		<link>http://blog.wianecki.com/2010/05/15/how-to-mount-an-iso-image-under-linux/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=how-to-mount-an-iso-image-under-linux</link>
		<comments>http://blog.wianecki.com/2010/05/15/how-to-mount-an-iso-image-under-linux/#comments</comments>
		<pubDate>Sat, 15 May 2010 18:17:04 +0000</pubDate>
		<dc:creator>cw</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[iso]]></category>
		<category><![CDATA[loop]]></category>
		<category><![CDATA[mount]]></category>

		<guid isPermaLink="false">http://blog.wianecki.com/?p=4453</guid>
		<description><![CDATA[<p>Posted in <a href="http://blog.wianecki.com/category/unix/os/linux/" title="Linux">Linux</a></p>Procedure to mount ISO images under Linux 1) You must login as a root user 2) Create the directory i.e. mount point: # mkdir -p /mnt/temp_disk1 3) Use mount command to mount iso file called disk1.iso with loop option: # mount -o loop disk1.iso /mnt/temp_disk1 Now you should be able to access all the files [...]]]></description>
		<wfw:commentRss>http://blog.wianecki.com/2010/05/15/how-to-mount-an-iso-image-under-linux/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to mount iso image under linux RedHat</title>
		<link>http://blog.wianecki.com/2009/03/15/how-to-mount-iso-image-under-linux-redhat/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=how-to-mount-iso-image-under-linux-redhat</link>
		<comments>http://blog.wianecki.com/2009/03/15/how-to-mount-iso-image-under-linux-redhat/#comments</comments>
		<pubDate>Mon, 16 Mar 2009 02:47:10 +0000</pubDate>
		<dc:creator>cw</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[iso]]></category>
		<category><![CDATA[mount]]></category>
		<category><![CDATA[redhat]]></category>

		<guid isPermaLink="false">http://blog.wianecki.com/?p=517</guid>
		<description><![CDATA[<p>Posted in <a href="http://blog.wianecki.com/category/unix/os/linux/" title="Linux">Linux</a></p>To mount /root/linux.iso file under /mnt directory. issue the following commands. # mount -o loop /root/linux.iso /mn/linux to unmount # umount /mnt/linux for example: # mkdir /mnt/sol-10-u6-ga1-sparc-dvd # mkdir /mnt/rhel4.7-x86_64-as-dvd # mkdir /mnt/rhel-server-5.3-x86_64-dvd # # mount -o loop /media/opsware/sunos/sol-10-u6-ga1-sparc-dvd.iso /mnt/sol-10-u6-ga1-sparc-dvd # mount -o loop /media/opsware/linux/RHEL4.7-x86_64-AS-DVD.iso /mnt/rhel4.7-x86_64-as-dvd # mount -o loop /media/opsware/linux/rhel-server-5.3-x86_64-dvd.iso /mnt/rhel-server-5.3-x86_64-dvd # mkdir /mnt/en_winxp_pro_with_sp2 [...]]]></description>
		<wfw:commentRss>http://blog.wianecki.com/2009/03/15/how-to-mount-iso-image-under-linux-redhat/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to mount iso image under Solaris</title>
		<link>http://blog.wianecki.com/2009/03/15/how-to-mount-iso-image-under-solaris/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=how-to-mount-iso-image-under-solaris</link>
		<comments>http://blog.wianecki.com/2009/03/15/how-to-mount-iso-image-under-solaris/#comments</comments>
		<pubDate>Sun, 15 Mar 2009 17:31:37 +0000</pubDate>
		<dc:creator>cw</dc:creator>
				<category><![CDATA[Solaris]]></category>
		<category><![CDATA[iso]]></category>
		<category><![CDATA[mount]]></category>

		<guid isPermaLink="false">http://blog.wianecki.com/?p=465</guid>
		<description><![CDATA[<p>Posted in <a href="http://blog.wianecki.com/category/unix/os/solaris/" title="Solaris">Solaris</a></p>To mount /root/sparc.iso file under /mnt directory. issue the following commands. # lofiadm -a /root/sparc.iso /dev/lofi/1 # mount -F hsfs -o ro /dev/lofi/1 /mnt to unmount # umount /mnt # lofiadm -d /dev/lofi/1 Note: lofi = loopback file driver   for example: opsware[root] mount -F hsfs -o ro `lofiadm -a /var/tmp/RHEL4.7-i386-AS-DVD.iso` /mnt/rh opsware[root] df -k [...]]]></description>
		<wfw:commentRss>http://blog.wianecki.com/2009/03/15/how-to-mount-iso-image-under-solaris/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>

