<?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>Pario TechnoBlob &#187; modprobe</title>
	<atom:link href="http://pario.no/tag/modprobe/feed/" rel="self" type="application/rss+xml" />
	<link>http://pario.no</link>
	<description>A cronological documentation test project, nothing serious, really!</description>
	<lastBuildDate>Mon, 30 Aug 2010 15:49:04 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Mounting ISO Files</title>
		<link>http://pario.no/2007/05/07/mounting-iso-files/</link>
		<comments>http://pario.no/2007/05/07/mounting-iso-files/#comments</comments>
		<pubDate>Mon, 07 May 2007 11:26:58 +0000</pubDate>
		<dc:creator>Hans-Henry Jakobsen</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Scripting]]></category>
		<category><![CDATA[dvd]]></category>
		<category><![CDATA[iso]]></category>
		<category><![CDATA[kernel]]></category>
		<category><![CDATA[modprobe]]></category>
		<category><![CDATA[mount]]></category>

		<guid isPermaLink="false">http://hhj.no/wordpress/2007/05/07/mount-neros-nrg-files/</guid>
		<description><![CDATA[ISO images are files containing the data of a CD (almost bit per bit). They can be mounted, using the loopback device. ISO images can only be mounted read-only (use mkisofs to create images). Kernel Requirements To mount ISO images you need the following in your kernel(as module or builtin): loop-back filesystem support (under Device [...]]]></description>
			<content:encoded><![CDATA[<p>ISO images are files containing the data of a CD (almost bit per bit). They can be mounted, using the loopback device. ISO images can only be mounted read-only (use mkisofs to create images).</p>
<p><strong>Kernel Requirements</strong></p>
<p>To mount ISO images you need the following in your kernel(as module or builtin):</p>
<ul>
<li>loop-back filesystem support (under Device Drivers &#8211; Block devices in kernel 2.6)</li>
<li>ISO 9660 CDROM file system support (under File systems &#8211; CD-ROM/DVD Filesystems in kernel 2.6)</li>
</ul>
<p>You also might want this for mounting non-linux ISO images:</p>
<ul>
<li>Microsoft Joliet CDROM extensions (under File systems &#8211; CD-ROM/DVD Filesystems in kernel 2.6)</li>
</ul>
<p>Linux Kernel Configuration: Joliet CDROM Extensions(2.6)</p>
<p>File Fystems &#8211;&gt; CD-ROM/DVD Filesystems<br />
&lt; *&gt; ISO 9660 CDROM file system support<br />
[*] Microsoft Joliet CDROM extensions</p>
<p><strong>Mounting</strong></p>
<p>To mount the ISO images, you&#8217;ll need to have root access. Login as root or use sudo, and execute:</p>
<pre>
mount -t iso9660 -o loop,user image.iso /wheretomount</pre>
<p>Drop ,user if you don&#8217;t want users to access the ISO files.</p>
<p>Note: If this fails with an error concerning <strong>/dev/loop</strong> then as root issue the command:</p>
<pre>
# modprobe loop</pre>
<p>Alternatively you may want to add loop to the list of modules that you autoload at boot:</p>
<pre>
# nano -w /etc/modules.autoload.d/kernel-2.6</pre>
<p>and add loop to the bottom of your list of modules.</p>
<p><strong>Hint 1:</strong> You can use <strong>cdemu</strong> to mount BIN images (It&#8217;s in portage). You can also use bin2iso to convert them to ISO (also in Portage).</p>
<p><strong>Hint 2:</strong> You can use <strong>mdf2iso</strong> to convert MDF/MDS files to ISO (It&#8217;s in portage). Or you can mount a .mdf file with:</p>
<pre>
mount image.mdf /wheretomount -o loop=/dev/loop0</pre>
<p><strong><br />
Hint 3:</strong> You can use <strong>nrg2iso</strong> to convert Nero&#8217;s .nrg files to ISO (It&#8217;s in portage). Or you can mount a .nrg file with:</p>
<pre>
mount -o loop,offset=307200 image.nrg /wheretomount</pre>
<p><strong>Hint 4:</strong> You can use <strong>ccd2iso</strong> to convert Clone CD&#8217;s <strong>.img</strong> files to <strong>ISO</strong> (It&#8217;s in portage).</p>
<p><strong>SVCD and VCDs</strong></p>
<p>SVCD and VCD ISO files can be played directly using <strong>mplayer</strong> or converted using <strong>mencoder</strong>.</p>
<script type="text/javascript">var wordpress_toolbar_urls = [];var wordpress_toolbar_url = "http://pario.no/wp-content/plugins/wordpress-toolbar/toolbar.php";var wordpress_toolbar_oinw = "n";var wordpress_toolbar_hash = "aHR0cDovL3BhcmlvLm5vLzIwMDcvMDUvMDcvbW91bnRpbmctaXNvLWZpbGVzLzx3cHRiPk1vdW50aW5nIElTTyBGaWxlczx3cHRiPmh0dHA6Ly9wYXJpby5ubzx3cHRiPlBhcmlvIFRlY2hub0Jsb2I%3D";</script>]]></content:encoded>
			<wfw:commentRss>http://pario.no/2007/05/07/mounting-iso-files/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
