<?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; iso</title>
	<atom:link href="http://pario.no/tag/iso/feed/" rel="self" type="application/rss+xml" />
	<link>http://pario.no</link>
	<description>A cronological documentation test project, nothing serious, really!</description>
	<lastBuildDate>Thu, 02 Feb 2012 13:17:58 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Downloading Linux ISO images from Scandinavia</title>
		<link>http://pario.no/2008/10/09/downloading-linux-iso-images-from-scandinavia/</link>
		<comments>http://pario.no/2008/10/09/downloading-linux-iso-images-from-scandinavia/#comments</comments>
		<pubDate>Thu, 09 Oct 2008 08:39:44 +0000</pubDate>
		<dc:creator>Hans-Henry Jakobsen</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[iso]]></category>

		<guid isPermaLink="false">http://pario.no/?p=727</guid>
		<description><![CDATA[Here are some useful addresses I use to download ISO images quickly. They contain different Linux distributions like Redhat, Debian, Ubuntu etc&#8230; ftp://ftp.uio.no/linux/ISO-images/ ftp://ftp.sunet.se/pub/os/Linux/distributions/ Enjoy!]]></description>
			<content:encoded><![CDATA[<p>Here are some useful addresses I use to download ISO images quickly. They contain different Linux distributions like Redhat, Debian, Ubuntu etc&#8230;</p>
<p><a href="ftp://ftp.uio.no/linux/ISO-images/">ftp://ftp.uio.no/linux/ISO-images/</a><br />
<a href="ftp://ftp.sunet.se/pub/os/Linux/distributions/">ftp://ftp.sunet.se/pub/os/Linux/distributions/</a></p>
<p>Enjoy!</p>
<script type="text/javascript">var wordpress_toolbar_urls = ["ftp:\/\/ftp.uio.no\/linux\/ISO-images\/","ftp:\/\/ftp.sunet.se\/pub\/os\/Linux\/distributions\/"];var wordpress_toolbar_url = "http://pario.no/wp-content/plugins/wordpress-toolbar/toolbar.php";var wordpress_toolbar_oinw = "n";var wordpress_toolbar_hash = "aHR0cDovL3BhcmlvLm5vLzIwMDgvMTAvMDkvZG93bmxvYWRpbmctbGludXgtaXNvLWltYWdlcy1mcm9tLXNjYW5kaW5hdmlhLzx3cHRiPkRvd25sb2FkaW5nIExpbnV4IElTTyBpbWFnZXMgZnJvbSBTY2FuZGluYXZpYTx3cHRiPmh0dHA6Ly9wYXJpby5ubzx3cHRiPlBhcmlvIFRlY2hub0Jsb2I%3D";</script>]]></content:encoded>
			<wfw:commentRss>http://pario.no/2008/10/09/downloading-linux-iso-images-from-scandinavia/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<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>
		<item>
		<title>Dump/image CDROM to ISO file</title>
		<link>http://pario.no/2007/05/07/dumpimage-cdrom-to-iso-file-2/</link>
		<comments>http://pario.no/2007/05/07/dumpimage-cdrom-to-iso-file-2/#comments</comments>
		<pubDate>Mon, 07 May 2007 11:10:52 +0000</pubDate>
		<dc:creator>Hans-Henry Jakobsen</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Scripting]]></category>
		<category><![CDATA[dd]]></category>
		<category><![CDATA[iso]]></category>
		<category><![CDATA[mkisofs]]></category>

		<guid isPermaLink="false">http://hhj.no/wordpress/2007/05/07/dumpimage-cdrom-til-iso-fil/</guid>
		<description><![CDATA[To create an ISO image from your CD/DVD, place the media in your drive but do not mount it. If it automounts, unmount it. # dd if=/dev/cdrom of=/path/til/ISO-fil To make an ISO image from files on your hard drive, create a directory which holds the files you want. Then use the mkisofs command # mkisofs [...]]]></description>
			<content:encoded><![CDATA[<p>To create an ISO image from your CD/DVD, place the media in your drive but do not mount it. If it automounts, unmount it. </p>
<pre>
# dd if=/dev/cdrom of=/path/til/ISO-fil</pre>
<p>To make an ISO image from files on your hard drive, create a directory which holds the files you want. Then use the mkisofs command</p>
<pre>
# mkisofs -o outputfile.iso /my/folder/</pre>
<p>The resultfile is called <b>outputfile.iso</b> witch contains all the files in the <b>/my/folder/</b> folder.</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 = "aHR0cDovL3BhcmlvLm5vLzIwMDcvMDUvMDcvZHVtcGltYWdlLWNkcm9tLXRvLWlzby1maWxlLTIvPHdwdGI%2BRHVtcC9pbWFnZSBDRFJPTSB0byBJU08gZmlsZTx3cHRiPmh0dHA6Ly9wYXJpby5ubzx3cHRiPlBhcmlvIFRlY2hub0Jsb2I%3D";</script>]]></content:encoded>
			<wfw:commentRss>http://pario.no/2007/05/07/dumpimage-cdrom-to-iso-file-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Create ISO file with mkisofs</title>
		<link>http://pario.no/2007/04/16/create-iso-file-with-mkisofs/</link>
		<comments>http://pario.no/2007/04/16/create-iso-file-with-mkisofs/#comments</comments>
		<pubDate>Mon, 16 Apr 2007 22:06:57 +0000</pubDate>
		<dc:creator>Hans-Henry Jakobsen</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Scripting]]></category>
		<category><![CDATA[iso]]></category>
		<category><![CDATA[mkisofs]]></category>

		<guid isPermaLink="false">http://hhj.no/wordpress/2007/04/16/create-iso-file-with-mkisofs/</guid>
		<description><![CDATA[The AUDIO_TS/ and VIDEO_TS/ directories are required by the dvd video standard, and contain all of the menus and video that will be used when you put this dvd into your home dvd player. # mkisofs -dvd-video -udf -o dvd.iso dvd_fs This will create the iso image dvd.iso that you can burn to a real [...]]]></description>
			<content:encoded><![CDATA[<p>The <strong>AUDIO_TS/</strong> and <strong>VIDEO_TS/</strong> directories are required by the dvd video standard, and contain all of the menus and video that will be used when you put this dvd into your home dvd player.</p>
<pre># mkisofs -dvd-video -udf -o dvd.iso dvd_fs</pre>
<p>This will create the iso image <strong>dvd.iso</strong> that you can burn to a real dvd with <strong>dvdrecord</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 = "aHR0cDovL3BhcmlvLm5vLzIwMDcvMDQvMTYvY3JlYXRlLWlzby1maWxlLXdpdGgtbWtpc29mcy88d3B0Yj5DcmVhdGUgSVNPIGZpbGUgd2l0aCBta2lzb2ZzPHdwdGI%2BaHR0cDovL3BhcmlvLm5vPHdwdGI%2BUGFyaW8gVGVjaG5vQmxvYg%3D%3D";</script>]]></content:encoded>
			<wfw:commentRss>http://pario.no/2007/04/16/create-iso-file-with-mkisofs/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>dvd-slideshow</title>
		<link>http://pario.no/2007/04/16/dvd-slideshow/</link>
		<comments>http://pario.no/2007/04/16/dvd-slideshow/#comments</comments>
		<pubDate>Mon, 16 Apr 2007 20:17:24 +0000</pubDate>
		<dc:creator>Hans-Henry Jakobsen</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Scripting]]></category>
		<category><![CDATA[dvd-slideshow]]></category>
		<category><![CDATA[iso]]></category>

		<guid isPermaLink="false">http://hhj.no/wordpress/2007/04/16/dvd-slideshow/</guid>
		<description><![CDATA[DVD-slideshow is a tool you can use to create a slideshow DVD with images. Create a file that describes the DVD content # dir2slideshow -T -t 5 -c 1 -n slideshow_name bilder/ Transform the content to DVD format # dvd-slideshow -mp2 -p -n "Tina's 9 mnd" slideshow_name.txt Create the DVD content and a ISO file [...]]]></description>
			<content:encoded><![CDATA[<p>DVD-slideshow is a tool you can use to create a slideshow DVD with images.</p>
<p>Create a file that describes the DVD content</p>
<pre># dir2slideshow -T -t 5 -c 1 -n slideshow_name bilder/</pre>
<p>Transform the content to DVD format</p>
<pre># dvd-slideshow -mp2 -p -n "Tina's 9 mnd" slideshow_name.txt</pre>
<p>Create the DVD content and a ISO file</p>
<pre># dvd-menu -t button_text -f slideshot_name.xml -n "Tina slideshow" -mp2 -p -iso</pre>
<p>The end result is stored in the file named <strong>dvd.iso</strong> ready to be burned using your favourite DVD-burning application.</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 = "aHR0cDovL3BhcmlvLm5vLzIwMDcvMDQvMTYvZHZkLXNsaWRlc2hvdy88d3B0Yj5kdmQtc2xpZGVzaG93PHdwdGI%2BaHR0cDovL3BhcmlvLm5vPHdwdGI%2BUGFyaW8gVGVjaG5vQmxvYg%3D%3D";</script>]]></content:encoded>
			<wfw:commentRss>http://pario.no/2007/04/16/dvd-slideshow/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

