<?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>Java, Programming, Struts2, jQuery, Linux and more &#187; mounten</title>
	<atom:link href="http://www.jgeppert.com/tag/mounten/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.jgeppert.com</link>
	<description>Johannes Geppert</description>
	<lastBuildDate>Thu, 09 Feb 2012 16:38:30 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=</generator>
		<item>
		<title>ISO Datei unter Linux mounten</title>
		<link>http://www.jgeppert.com/2010/01/iso-datei-unter-linux-mounten/</link>
		<comments>http://www.jgeppert.com/2010/01/iso-datei-unter-linux-mounten/#comments</comments>
		<pubDate>Sun, 10 Jan 2010 17:59:13 +0000</pubDate>
		<dc:creator>jogep</dc:creator>
				<category><![CDATA[linux]]></category>
		<category><![CDATA[iso]]></category>
		<category><![CDATA[iso-datei]]></category>
		<category><![CDATA[mount]]></category>
		<category><![CDATA[mounten]]></category>

		<guid isPermaLink="false">http://www.jgeppert.com/?p=329</guid>
		<description><![CDATA[<div class="addthis_toolbox addthis_default_style " addthis:url='http://www.jgeppert.com/2010/01/iso-datei-unter-linux-mounten/' addthis:title='ISO Datei unter Linux mounten '  ><a class="addthis_button_facebook_like" fb:like:layout="button_count"></a><a class="addthis_button_tweet"></a><a class="addthis_counter addthis_pill_style"></a></div>Wenn man eine ISO Datei heruntergeladen hat, will man diese vielleicht vor dem Brennen überprüfen oder ohne umständliches Brennen auf die Daten zugreifen. Zu diesem Zwecke kann man als root einfach die ISO-Datei in ein beliebiges Verzeichnis mounten. Als erstes öffnet man eine Konsole und wechselt in den Root Benutzer Modus. linux:~ # su - [...]<div class="addthis_toolbox addthis_default_style addthis_32x32_style" addthis:url='http://www.jgeppert.com/2010/01/iso-datei-unter-linux-mounten/' addthis:title='ISO Datei unter Linux mounten ' ><a class="addthis_button_preferred_1"></a><a class="addthis_button_preferred_2"></a><a class="addthis_button_preferred_3"></a><a class="addthis_button_preferred_4"></a><a class="addthis_button_compact"></a></div>]]></description>
			<content:encoded><![CDATA[<div class="addthis_toolbox addthis_default_style " addthis:url='http://www.jgeppert.com/2010/01/iso-datei-unter-linux-mounten/' addthis:title='ISO Datei unter Linux mounten '  ><a class="addthis_button_facebook_like" fb:like:layout="button_count"></a><a class="addthis_button_tweet"></a><a class="addthis_counter addthis_pill_style"></a></div>Wenn man eine ISO Datei heruntergeladen hat, will man diese vielleicht vor dem Brennen überprüfen oder ohne umständliches Brennen auf die Daten zugreifen. Zu diesem Zwecke kann man als root einfach die ISO-Datei in ein beliebiges Verzeichnis mounten.

Als erstes öffnet man eine Konsole und wechselt in den Root Benutzer Modus.
<code>
linux:~ # su -
 </code>

Anschließend erstellt man ein neues Verzeichnis.
<code>
linux:~ # mkdir /media/myiso
 </code>

Jetzt kann mit <strong>mount</strong> einfach die ISO-Datei in das neu erstellte Verzeichnis mounten.
<code>
linux:~ # mount -t iso9660 -o ro,loop=/dev/loop0 /downloads/mysaved.iso /media/myiso
 </code>

Jetzt kann man auf die Daten im Verzeichnis <strong>/media/myiso</strong> zugreifen.<div class="addthis_toolbox addthis_default_style addthis_32x32_style" addthis:url='http://www.jgeppert.com/2010/01/iso-datei-unter-linux-mounten/' addthis:title='ISO Datei unter Linux mounten ' ><a class="addthis_button_preferred_1"></a><a class="addthis_button_preferred_2"></a><a class="addthis_button_preferred_3"></a><a class="addthis_button_preferred_4"></a><a class="addthis_button_compact"></a></div>]]></content:encoded>
			<wfw:commentRss>http://www.jgeppert.com/2010/01/iso-datei-unter-linux-mounten/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

