<?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>mgBlog &#187; uup</title>
	<atom:link href="http://mgsimon.de/category/ubuntuusers/feed/" rel="self" type="application/rss+xml" />
	<link>http://mgsimon.de</link>
	<description>Esc(ape), einfach ein anderes Blog über technische Spielerei ...</description>
	<lastBuildDate>Sun, 18 Dec 2011 08:52:23 +0000</lastBuildDate>
	<language>de</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Konfigurationsverwaltung mit RCS, dateibasierte Versionierungen</title>
		<link>http://mgsimon.de/2011/11/03/konfigurationsverwaltung-mit-rcs-dateibasierte-versionierungen/</link>
		<comments>http://mgsimon.de/2011/11/03/konfigurationsverwaltung-mit-rcs-dateibasierte-versionierungen/#comments</comments>
		<pubDate>Thu, 03 Nov 2011 19:24:37 +0000</pubDate>
		<dc:creator>mg</dc:creator>
				<category><![CDATA[HowTo]]></category>
		<category><![CDATA[Linux & Unix]]></category>
		<category><![CDATA[Mac OS X]]></category>
		<category><![CDATA[uup]]></category>
		<category><![CDATA[Cygwin]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[MacOSX]]></category>
		<category><![CDATA[RCS]]></category>
		<category><![CDATA[Unix]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://mgsimon.de/?p=3318</guid>
		<description><![CDATA[Kennt man nicht die schnellen &#196;nderungen in der einen oder anderen Konfigurationsdatei? Und die immer mehr werdenden Sicherungskopien? configfile.bak configfile.201111031811 configfile.201111031815 configfile.mgsimon configfile&#8230; Wieso nicht mit einer einfachen Versionsverwaltung? Old school RCS ist auf so gut wie jedem Linux, Unix oder Mac OS X vorhanden &#8230; RCS Revision Control System (RCS) ist eine Versionierung f&#252;r [...]]]></description>
			<content:encoded><![CDATA[<p>Kennt man nicht die schnellen &#196;nderungen in der einen oder anderen Konfigurationsdatei? Und die immer mehr werdenden Sicherungskopien?</p>
<ul>
<li>configfile.bak</li>
<li>configfile.201111031811</li>
<li>configfile.201111031815</li>
<li>configfile.mgsimon</li>
<li>configfile&#8230;</li>
</ul>
<p>Wieso nicht mit einer einfachen Versionsverwaltung? Old school RCS ist auf so gut wie jedem Linux, Unix oder Mac OS X vorhanden &#8230;</p>
<p><span id="more-3318"></span><div style="background-color: rgb(191, 228, 255); border:1px solid rgb(128, 201, 255); color: rgb(0, 0, 0); margin:0 0 1.5em; overflow:auto; padding: 3px;">
<img src="/wp-content/plugins/MyShortCodes/info.png" alt="Hinweis" title="Hinweis" width="24" height="24" style="margin: 4px 8px 0 0; float:left;"/>Das folgende Beispiel wurde unter Mac OS X 10.6.8 mit der RCS Version 5.7 durchgef&#252;hrt.</div><strong>RCS</strong></p>
<p>Revision Control System (RCS) ist eine Versionierung f&#252;r einzelne Dateien. Dabei werden die Versionen mit einer zus&#228;tzlichen &#8220;,v-Datei&#8221; verwaltet. Ohne ein Repository k&#246;nnen beliebige Dateien schnell und einfach versioniert werden. Ideal zur Verwaltung verschiedener Konfigurationsst&#228;nde, ohne gleich jedes Mal eine manuelle Sicherungskopie erstellen zu m&#252;ssen.</p>
<div style="background-color: rgb(191, 255, 191); border:1px solid rgb(128, 255, 128); color: rgb(0, 0, 0); margin:0 0 1.5em; overflow:auto; padding: 3px;">
<img src="/wp-content/plugins/MyShortCodes/tip.png" alt="Tipp" title="Tipp" width="24" height="24" style="margin: 4px 8px 0 0; float:left;" />Die f&#252;r Windows frei verf&#252;gbare Unix Emulation <a href="http://www.cygwin.com/" target="_blank">Cygwin</a> unterst&#252;tzt RCS.</div>
<p><strong>Sicherung</strong></p>
<p>ohne RCS</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">$ <span style="color: #c20cb9; font-weight: bold;">cp</span> logging.properties logging.properties.201111031811</pre></div></div>

<p>mit RCS</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">$ <span style="color: #c20cb9; font-weight: bold;">rcs</span> <span style="color: #660033;">-i</span> <span style="color: #660033;">-U</span> logging.properties
RCS <span style="color: #c20cb9; font-weight: bold;">file</span>: logging.properties,v
enter description, terminated with single <span style="color: #ff0000;">'.'</span> or end of <span style="color: #c20cb9; font-weight: bold;">file</span>:
NOTE: This is NOT the log message<span style="color: #000000; font-weight: bold;">!</span>
<span style="color: #000000; font-weight: bold;">&gt;&gt;</span> existing version
<span style="color: #000000; font-weight: bold;">&gt;&gt;</span> .
<span style="color: #000000; font-weight: bold;">done</span>
$ ci <span style="color: #660033;">-u</span> logging.properties
logging.properties,v  <span style="color: #000000; font-weight: bold;">&lt;</span>--  logging.properties
initial revision: <span style="color: #000000;">1.1</span>
<span style="color: #000000; font-weight: bold;">done</span></pre></div></div>

<div style="background-color: rgb(191, 255, 191); border:1px solid rgb(128, 255, 128); color: rgb(0, 0, 0); margin:0 0 1.5em; overflow:auto; padding: 3px;">
<img src="/wp-content/plugins/MyShortCodes/tip.png" alt="Tipp" title="Tipp" width="24" height="24" style="margin: 4px 8px 0 0; float:left;" />Damit die Zugriffsrechte erhalten bleiben und die aktuelle Arbeitskopie nicht gel&#246;scht wird immer erst eine initiale Version ohne &#8220;strict locking&#8221; (rcs -i -U datei) erstellen und anschlie&#223;end (ci -u datei) versionieren.</div>
<p><strong>Neue Konfiguration</strong></p>
<p>Gew&#252;nschte Anpassungen in der der aktuellen Datei vornehmen, speichern und sichern.</p>
<p>ohne RCS</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">$ <span style="color: #c20cb9; font-weight: bold;">cp</span> logging.properties logging.properties.201111031815</pre></div></div>

<p>mit RCS</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">$ ci <span style="color: #660033;">-u</span> logging.properties
logging.properties,v  <span style="color: #000000; font-weight: bold;">&lt;</span>--  logging.properties
new revision: <span style="color: #000000;">1.2</span>; previous revision: <span style="color: #000000;">1.1</span>
enter log message, terminated with single <span style="color: #ff0000;">'.'</span> or end of <span style="color: #c20cb9; font-weight: bold;">file</span>:
<span style="color: #000000; font-weight: bold;">&gt;&gt;</span> log <span style="color: #c20cb9; font-weight: bold;">more</span> startup messages
<span style="color: #000000; font-weight: bold;">&gt;&gt;</span> .
<span style="color: #000000; font-weight: bold;">done</span></pre></div></div>

<p><strong>Versionshistorie</strong></p>
<p>ohne RCS</p>

<div class="wp_syntax"><div class="code"><pre class="text" style="font-family:monospace;">nicht wirklich möglich</pre></div></div>

<p>mit RCS</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">$ rlog logging.properties
&nbsp;
RCS <span style="color: #c20cb9; font-weight: bold;">file</span>: logging.properties,v
Working <span style="color: #c20cb9; font-weight: bold;">file</span>: logging.properties
<span style="color: #c20cb9; font-weight: bold;">head</span>: <span style="color: #000000;">1.2</span>
branch:
locks:
access list:
symbolic names:
keyword substitution: kv
total revisions: <span style="color: #000000;">2</span>;	selected revisions: <span style="color: #000000;">2</span>
description:
existing version
<span style="color: #660033;">----------------------------</span>
revision <span style="color: #000000;">1.2</span>
<span style="color: #c20cb9; font-weight: bold;">date</span>: <span style="color: #000000;">2011</span><span style="color: #000000; font-weight: bold;">/</span><span style="color: #000000;">11</span><span style="color: #000000; font-weight: bold;">/</span>03 <span style="color: #000000;">18</span>:<span style="color: #000000;">46</span>:<span style="color: #000000;">57</span>;  author: mgsimon;  state: Exp;  lines: +<span style="color: #000000;">2</span> <span style="color: #660033;">-2</span>
log <span style="color: #c20cb9; font-weight: bold;">more</span> startup messages
<span style="color: #660033;">----------------------------</span>
revision <span style="color: #000000;">1.1</span>
<span style="color: #c20cb9; font-weight: bold;">date</span>: <span style="color: #000000;">2011</span><span style="color: #000000; font-weight: bold;">/</span><span style="color: #000000;">11</span><span style="color: #000000; font-weight: bold;">/</span>03 <span style="color: #000000;">18</span>:<span style="color: #000000;">44</span>:<span style="color: #000000;">54</span>;  author: mgsimon;  state: Exp;
Initial revision
=============================================================================</pre></div></div>

<p><strong>Ver&#228;nderungen</strong></p>
<p>ohne RCS</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">$ <span style="color: #c20cb9; font-weight: bold;">diff</span> logging.properties logging.properties.201111031811 
<span style="color: #000000;">61</span>,62c61,<span style="color: #000000;">62</span>
<span style="color: #000000; font-weight: bold;">&lt;</span> org.apache.catalina.startup.ContextConfig.level = FINE
<span style="color: #000000; font-weight: bold;">&lt;</span> org.apache.catalina.startup.HostConfig.level = FINE
<span style="color: #660033;">---</span>
<span style="color: #000000; font-weight: bold;">&gt;</span> <span style="color: #666666; font-style: italic;">#org.apache.catalina.startup.ContextConfig.level = FINE</span>
<span style="color: #000000; font-weight: bold;">&gt;</span> <span style="color: #666666; font-style: italic;">#org.apache.catalina.startup.HostConfig.level = FINE</span></pre></div></div>

<p>mit RCS</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">$ rcsdiff logging.properties
===================================================================
RCS <span style="color: #c20cb9; font-weight: bold;">file</span>: logging.properties,v
retrieving revision <span style="color: #000000;">1.2</span>
<span style="color: #c20cb9; font-weight: bold;">diff</span> -r1.2 logging.properties
mgBook:conf mgsimon$ rcsdiff -r1.1 logging.properties
===================================================================
RCS <span style="color: #c20cb9; font-weight: bold;">file</span>: logging.properties,v
retrieving revision <span style="color: #000000;">1.1</span>
<span style="color: #c20cb9; font-weight: bold;">diff</span> -r1.1 logging.properties
<span style="color: #000000;">61</span>,62c61,<span style="color: #000000;">62</span>
<span style="color: #000000; font-weight: bold;">&lt;</span> <span style="color: #666666; font-style: italic;">#org.apache.catalina.startup.ContextConfig.level = FINE</span>
<span style="color: #000000; font-weight: bold;">&lt;</span> <span style="color: #666666; font-style: italic;">#org.apache.catalina.startup.HostConfig.level = FINE</span>
<span style="color: #660033;">---</span>
<span style="color: #000000; font-weight: bold;">&gt;</span> org.apache.catalina.startup.ContextConfig.level = FINE
<span style="color: #000000; font-weight: bold;">&gt;</span> org.apache.catalina.startup.HostConfig.level = FINE</pre></div></div>

<p><strong>Alte Konfiguration</strong></p>
<p>ohne RCS</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">$ <span style="color: #c20cb9; font-weight: bold;">cp</span> logging.properties.201111031811 logging.properties</pre></div></div>

<p>mit RCS</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">$ <span style="color: #c20cb9; font-weight: bold;">co</span> -r1.1 logging.properties
logging.properties,v  --<span style="color: #000000; font-weight: bold;">&gt;</span>  logging.properties
revision <span style="color: #000000;">1.1</span>
writable logging.properties exists; remove it? <span style="color: #7a0874; font-weight: bold;">&#91;</span>ny<span style="color: #7a0874; font-weight: bold;">&#93;</span><span style="color: #7a0874; font-weight: bold;">&#40;</span>n<span style="color: #7a0874; font-weight: bold;">&#41;</span>: y
<span style="color: #000000; font-weight: bold;">done</span></pre></div></div>

<p><strong>Konfigurations&#228;nderungen</strong></p>
<p>ohne RCS</p>

<div class="wp_syntax"><div class="code"><pre class="text" style="font-family:monospace;">nicht wirklich möglich</pre></div></div>

<p>mit RCS</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">$ <span style="color: #c20cb9; font-weight: bold;">find</span> conf<span style="color: #000000; font-weight: bold;">/</span> <span style="color: #660033;">-name</span> <span style="color: #000000; font-weight: bold;">*</span>,v
conf<span style="color: #000000; font-weight: bold;">//</span>catalina.properties,v
conf<span style="color: #000000; font-weight: bold;">//</span>context.xml,v
conf<span style="color: #000000; font-weight: bold;">//</span>logging.properties,v
conf<span style="color: #000000; font-weight: bold;">//</span>server.xml,v
conf<span style="color: #000000; font-weight: bold;">//</span>tomcat-users.xml,v
conf<span style="color: #000000; font-weight: bold;">//</span>web.xml,v</pre></div></div>

<p><strong>Zusammenfassung</strong></p>

<div class="wp_syntax"><div class="code"><pre class="text" style="font-family:monospace;">rcs -i -U datei =&gt; ci -u datei =&gt; vi datei =&gt; ci -u datei =&gt; ...</pre></div></div>

<p>Keep IT simple &#8230; ;)</p>
<p><strong>Weiter &#8230;</strong></p>
<ul>
<li><a href="http://www.gnu.org/software/rcs/manual/rcs.html">RCS Dokumentation</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://mgsimon.de/2011/11/03/konfigurationsverwaltung-mit-rcs-dateibasierte-versionierungen/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Ubuntu Maverick Meerkat 10.10 Netbook Edition</title>
		<link>http://mgsimon.de/2010/10/11/ubuntu-maverick-meerkat-10-10-netbook-edition/</link>
		<comments>http://mgsimon.de/2010/10/11/ubuntu-maverick-meerkat-10-10-netbook-edition/#comments</comments>
		<pubDate>Mon, 11 Oct 2010 05:25:35 +0000</pubDate>
		<dc:creator>mg</dc:creator>
				<category><![CDATA[Linux & Unix]]></category>
		<category><![CDATA[uup]]></category>
		<category><![CDATA[Eee]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://mgsimon.de/?p=2872</guid>
		<description><![CDATA[Ubuntu Maverick Meerkat 10.10 Netbook Edition runtergeladen, USB-Stick Startmedium erstellt, gestartet, installiert, ein paar Einstellungen und l&#228;uft auf dem Netbook 901 GO aus der Eee PC Serie von Asus … Die neue Oberfl&#228;che ist h&#252;bsch und das Bedienkonzept f&#252;r die Netbook Edition ist sehr gelungen, aber leider ist der Eee PC 901 GO mit dem [...]]]></description>
			<content:encoded><![CDATA[<p>Ubuntu Maverick Meerkat 10.10 Netbook Edition <a href="http://www.ubuntu.com/netbook/get-ubuntu/download">runtergeladen</a>, <a href="http://mgsimon.de/wie-anaufnachzu/usb-stick-startmedium-erstellen/">USB-Stick Startmedium erstellt</a>, gestartet, installiert, ein paar Einstellungen und l&#228;uft auf dem Netbook 901 GO aus der Eee PC Serie von Asus … </p>
<div id="attachment_2880" class="wp-caption alignnone" style="width: 452px"><img src="http://mgsimon.de/wp-content/uploads/2010/10/EeeUbuntuMaverickMeerkatNetbookEdition.png" alt="Eee PC 901 :: Ubuntu Maverick Meerkat Netbook Edition" title="Eee PC 901 :: Ubuntu Maverick Meerkat Netbook Edition" width="442" height="259" class="size-full wp-image-2880 stamp" /><p class="wp-caption-text">Eee PC 901 :: Ubuntu Maverick Meerkat Netbook Edition</p></div>
<p>Die neue Oberfl&#228;che ist h&#252;bsch und das Bedienkonzept f&#252;r die Netbook Edition ist sehr gelungen, aber leider ist der <a target="_blank" href="http://www.amazon.de/dp/B001JQLH1A/ref=nosim?tag=mgs-21" rel="nofollow">Eee PC 901 GO</a> mit dem eigensinnigen Erdm&#228;nnchen &#252;berfordert. Auf dem ersten Blick scheint alles zu funktionieren, aber die Reaktionszeiten der Netbook Edition sind viel zu langsam.</p>
<p>&#8230; Version 10.10 ver&#246;ffentlicht am 10.10.10 um 10:10, was f&#252;r ein Bin&#228;rtag. :-)</p>
]]></content:encoded>
			<wfw:commentRss>http://mgsimon.de/2010/10/11/ubuntu-maverick-meerkat-10-10-netbook-edition/feed/</wfw:commentRss>
		<slash:comments>12</slash:comments>
		</item>
		<item>
		<title>Android und die Tiefen der Quellen</title>
		<link>http://mgsimon.de/2010/09/19/android-und-die-tiefen-der-quellen/</link>
		<comments>http://mgsimon.de/2010/09/19/android-und-die-tiefen-der-quellen/#comments</comments>
		<pubDate>Sun, 19 Sep 2010 12:45:18 +0000</pubDate>
		<dc:creator>mg</dc:creator>
				<category><![CDATA[Linux & Unix]]></category>
		<category><![CDATA[Mobil]]></category>
		<category><![CDATA[uup]]></category>
		<category><![CDATA[Android]]></category>
		<category><![CDATA[Debug]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Plattform]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://mgsimon.de/?p=2596</guid>
		<description><![CDATA[Das Android SDK mit den Android Development Tools (ADT) und Eclipse oder die Entwicklungsumgebung MOTODEV Studio for Android von Motorola erm&#246;glichen einen leichten Einstieg in die Anwendungsentwicklung f&#252;r Android, aber sp&#228;testens f&#252;r systemnahe Anwendungen sind diese Umgebungen nicht mehr ausreichend. Ein erster Versuch &#252;ber die Grenzen der eigenen Anwendung hinaus die Klassen der Android Plattform [...]]]></description>
			<content:encoded><![CDATA[<p>Das <a href="http://developer.android.com/sdk/index.html">Android SDK</a> mit den <a href="http://developer.android.com/sdk/eclipse-adt.html">Android Development Tools (ADT)</a> und <a href="http://www.eclipse.org/">Eclipse</a> oder die Entwicklungsumgebung <a href="http://developer.motorola.com/docstools/motodevstudio/">MOTODEV Studio for Android</a> von Motorola erm&#246;glichen einen leichten Einstieg in die Anwendungsentwicklung f&#252;r Android, aber sp&#228;testens f&#252;r systemnahe Anwendungen sind diese Umgebungen nicht mehr ausreichend.<br />
<div id="attachment_2685" class="wp-caption alignnone" style="width: 452px"><img src="http://mgsimon.de/wp-content/uploads/2010/09/MOTODEV_debug.png" alt="MOTODEV :: Debug" title="MOTODEV :: Debug" width="442" height="248" class="size-full wp-image-2685 stamp" /><p class="wp-caption-text">MOTODEV :: Debug</p></div><br />
Ein erster Versuch &#252;ber die Grenzen der eigenen Anwendung hinaus die Klassen der Android Plattform im Debugger zu analysieren &#8230; </p>
<p><span id="more-2596"></span><div style="background-color: rgb(191, 228, 255); border:1px solid rgb(128, 201, 255); color: rgb(0, 0, 0); margin:0 0 1.5em; overflow:auto; padding: 3px;">
<img src="/wp-content/plugins/MyShortCodes/info.png" alt="Hinweis" title="Hinweis" width="24" height="24" style="margin: 4px 8px 0 0; float:left;"/>Das folgende Beispiel wurde unter <a href="http://www.ubuntu.com/desktop/get-ubuntu/download">Ubuntu 9.10 &#8211; Karmic Koala &#8211; 64-bit x86</a> mit der IDE <a href="http://developer.motorola.com/docstools/motodevstudio/download/">MOTODEV Studio for Android v1.3 (64-bit)</a> durchgef&#252;hrt.</div></p>
<p><strong>Entwicklungsumgebung Android Plattform</strong></p>
<p>erforderliche Pakete installieren</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">$ <span style="color: #c20cb9; font-weight: bold;">sudo</span> <span style="color: #c20cb9; font-weight: bold;">apt-get</span> <span style="color: #c20cb9; font-weight: bold;">install</span> openjdk-<span style="color: #000000;">6</span>-jdk git-core gnupg <span style="color: #c20cb9; font-weight: bold;">flex</span> <span style="color: #c20cb9; font-weight: bold;">bison</span> gperf build-essential <span style="color: #c20cb9; font-weight: bold;">zip</span> curl zlib1g-dev gcc-multilib g++-multilib libc6-dev-i386 lib32ncurses5-dev ia32-libs x11proto-core-dev libx11-dev lib32readline5-dev lib32z-dev</pre></div></div>

<p>Ubuntu X11 Workaround</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">$ <span style="color: #c20cb9; font-weight: bold;">sudo</span> <span style="color: #c20cb9; font-weight: bold;">ln</span> <span style="color: #660033;">-s</span> <span style="color: #000000; font-weight: bold;">/</span>usr<span style="color: #000000; font-weight: bold;">/</span>lib32<span style="color: #000000; font-weight: bold;">/</span>libX11.so.6 <span style="color: #000000; font-weight: bold;">/</span>usr<span style="color: #000000; font-weight: bold;">/</span>lib32<span style="color: #000000; font-weight: bold;">/</span>libX11.so</pre></div></div>

<p>repo Skript installieren</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">$ curl http:<span style="color: #000000; font-weight: bold;">//</span>android.git.kernel.org<span style="color: #000000; font-weight: bold;">/</span>repo <span style="color: #000000; font-weight: bold;">&gt;</span> ~<span style="color: #000000; font-weight: bold;">/</span>bin<span style="color: #000000; font-weight: bold;">/</span>repo
$ <span style="color: #c20cb9; font-weight: bold;">chmod</span> +x ~<span style="color: #000000; font-weight: bold;">/</span>bin<span style="color: #000000; font-weight: bold;">/</span>repo</pre></div></div>

<p>Verzeichnis f&#252;r die lokalen Quellen erstellen</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">$ <span style="color: #c20cb9; font-weight: bold;">mkdir</span> ~<span style="color: #000000; font-weight: bold;">/</span>android<span style="color: #000000; font-weight: bold;">/</span>android-master
$ <span style="color: #7a0874; font-weight: bold;">cd</span> ~<span style="color: #000000; font-weight: bold;">/</span>android<span style="color: #000000; font-weight: bold;">/</span>android-master<span style="color: #000000; font-weight: bold;">/</span></pre></div></div>

<p>Verzeichnis f&#252;r die Quellen initialisieren</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">$ ~<span style="color: #000000; font-weight: bold;">/</span>bin<span style="color: #000000; font-weight: bold;">/</span>repo init <span style="color: #660033;">-u</span> <span style="color: #c20cb9; font-weight: bold;">git</span>:<span style="color: #000000; font-weight: bold;">//</span>android.git.kernel.org<span style="color: #000000; font-weight: bold;">/</span>platform<span style="color: #000000; font-weight: bold;">/</span>manifest.git</pre></div></div>

<p>Quellen herunterladen<br />
<div style="background-color: rgb(191, 228, 255); border:1px solid rgb(128, 201, 255); color: rgb(0, 0, 0); margin:0 0 1.5em; overflow:auto; padding: 3px;">
<img src="/wp-content/plugins/MyShortCodes/info.png" alt="Hinweis" title="Hinweis" width="24" height="24" style="margin: 4px 8px 0 0; float:left;"/>Die <a href="http://android.git.kernel.org/">Quellen</a> der Android Plattform sind 4,1 GB und konnten mit meiner DSL Anbindung in gut 40 Minuten (39m8.564s) heruntergeladen werden.</div></p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">$ ~<span style="color: #000000; font-weight: bold;">/</span>bin<span style="color: #000000; font-weight: bold;">/</span>repo <span style="color: #c20cb9; font-weight: bold;">sync</span></pre></div></div>

<p>Android Plattform &#252;bersetzen<br />
<div style="background-color: rgb(191, 228, 255); border:1px solid rgb(128, 201, 255); color: rgb(0, 0, 0); margin:0 0 1.5em; overflow:auto; padding: 3px;">
<img src="/wp-content/plugins/MyShortCodes/info.png" alt="Hinweis" title="Hinweis" width="24" height="24" style="margin: 4px 8px 0 0; float:left;"/>Die 4,1 GB Quellen der Android Plattform konnte ich mit meinem Asus P50IJ in gut zwei Stunden (123m26.699s) &#252;bersetzen und wachsen auf etwa 8,1 GB an.</div></p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">$ <span style="color: #7a0874; font-weight: bold;">cd</span> ~<span style="color: #000000; font-weight: bold;">/</span>android<span style="color: #000000; font-weight: bold;">/</span>android-master<span style="color: #000000; font-weight: bold;">/</span>
$ <span style="color: #c20cb9; font-weight: bold;">make</span></pre></div></div>

<p>Emulator starten</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">$ <span style="color: #7a0874; font-weight: bold;">cd</span> ~<span style="color: #000000; font-weight: bold;">/</span>android<span style="color: #000000; font-weight: bold;">/</span>android-master<span style="color: #000000; font-weight: bold;">/</span>
$ . build<span style="color: #000000; font-weight: bold;">/</span>envsetup.sh
$ lunch <span style="color: #000000;">1</span>
$ emulator</pre></div></div>

<p><div style="background-color: rgb(191, 255, 191); border:1px solid rgb(128, 255, 128); color: rgb(0, 0, 0); margin:0 0 1.5em; overflow:auto; padding: 3px;">
<img src="/wp-content/plugins/MyShortCodes/tip.png" alt="Tipp" title="Tipp" width="24" height="24" style="margin: 4px 8px 0 0; float:left;" />Der Emulator wird gegens&#228;tzlich zum OS in der vertikalen Ausrichtung gestartet? Damit der Nacken nicht steif wird, kann die Ausrichtung des Emulators mit &lt;STRG&gt;+&lt;F11&gt; und &lt;STRG&gt;+&lt;F12&gt; ge&#228;ndert werden.</div><br />
<div id="attachment_2665" class="wp-caption alignnone" style="width: 452px"><img src="http://mgsimon.de/wp-content/uploads/2010/09/android_emulator_horizontal.png" alt="Android Plattform :: Emulator" title="Android Plattform :: Emulator" width="442" height="436" class="size-full wp-image-2665 stamp" /><p class="wp-caption-text">Android Plattform :: Emulator</p></div></p>
<p>Anwendung installieren (optional)</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">$ <span style="color: #7a0874; font-weight: bold;">cd</span> ~<span style="color: #000000; font-weight: bold;">/</span>android<span style="color: #000000; font-weight: bold;">/</span>android-master<span style="color: #000000; font-weight: bold;">/</span>
$ . build<span style="color: #000000; font-weight: bold;">/</span>envsetup.sh
$ lunch <span style="color: #000000;">1</span>
$ adb <span style="color: #660033;">-s</span> emulator-<span style="color: #000000;">5554</span> <span style="color: #c20cb9; font-weight: bold;">install</span> MeineAnwendung.apk</pre></div></div>

<p><strong>Android Plattform &#038; MOTODEV Studio for Android</strong></p>
<p>Vorlage f&#252;r die Classpath-Konfiguration kopieren</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">$ <span style="color: #7a0874; font-weight: bold;">cd</span> ~<span style="color: #000000; font-weight: bold;">/</span>android<span style="color: #000000; font-weight: bold;">/</span>android-master<span style="color: #000000; font-weight: bold;">/</span>
$ <span style="color: #c20cb9; font-weight: bold;">cp</span> development<span style="color: #000000; font-weight: bold;">/</span>ide<span style="color: #000000; font-weight: bold;">/</span>eclipse<span style="color: #000000; font-weight: bold;">/</span>.classpath .
$ <span style="color: #c20cb9; font-weight: bold;">chmod</span> u+<span style="color: #c20cb9; font-weight: bold;">w</span> .classpath</pre></div></div>

<p>In der IDE die Quellen der Android Plattform &#252;ber &#8220;File / New / Project&#8230; / Java / Java Project&#8221; und der &#8220;Use default loation&#8221; ge&#228;ndert auf &#8220;~/android/android-master&#8221; einbinden.<br />
<div id="attachment_2688" class="wp-caption alignnone" style="width: 452px"><img src="http://mgsimon.de/wp-content/uploads/2010/09/eclipse_new_java_project.png" alt="MOTODEV :: new Java Project" title="MOTODEV :: new Java Project" width="442" height="552" class="size-full wp-image-2688 stamp" /><p class="wp-caption-text">MOTODEV :: new Java Project</p></div><br />
<strong>Anwendung &#038; Android Plattform debuggen</strong></p>
<p>Die Quellen der eigenen Anwendung der Android Plattform &#252;ber Kontextmen&#252; &#8220;Build Path / Configure Build Path&#8230; / Projects / Add&#8230; / Select projects to add&#8221; hinzuf&#252;gen.</p>
<p>DDMS Perspektive &#246;ffnen und die VM der gestarteten Anwendung zum debuggen selektieren.<br />
<div id="attachment_2675" class="wp-caption alignnone" style="width: 452px"><img src="http://mgsimon.de/wp-content/uploads/2010/09/MOTODEV_DDMS.png" alt="MOTODEV :: DDMS" title="MOTODEV :: DDMS" width="442" height="248" class="size-full wp-image-2675 stamp" /><p class="wp-caption-text">MOTODEV :: DDMS</p></div></p>
<p>Zu guter letzt einen Breakpoint nach belieben setzen und &#252;ber Kontextmen&#252; auf das Projekt der Android Plattform &#8220;Debug As / Debug Configurations&#8230;&#8221; unter &#8220;Remote Java Application&#8221; eine neue Konfiguration mit folgenden Werten erstellen.</p>
<div id="attachment_2683" class="wp-caption alignnone" style="width: 452px"><img src="http://mgsimon.de/wp-content/uploads/2010/09/MOTODEV_debug_configuration.png" alt="MOTODEV :: Debug Configuration" title="MOTODEV :: Debug Configuration" width="442" height="354" class="size-full wp-image-2683 stamp" /><p class="wp-caption-text">MOTODEV :: Debug Configuration</p></div>

<div class="wp_syntax"><div class="code"><pre class="text" style="font-family:monospace;">Host: localhost
Port: 8700</pre></div></div>

<p>&#220;ber Debug verbindet sich die IDE mit der im DDMS selektierten VM des Emulators und bei erreichen des Breakpoints kann in die Debug Perspektive gewechselt werden und bis in die Tiefen der Android Plattform Quellen Schritt f&#252;r Schritt vorgedrungen werden &#8230;</p>
<div id="attachment_2697" class="wp-caption alignnone" style="width: 452px"><img src="http://mgsimon.de/wp-content/uploads/2010/09/MOTODEV_confirm_perspective_switch.png" alt="MOTODEV :: Switch Perspective" title="MOTODEV :: Switch Perspective" width="442" height="208" class="size-full wp-image-2697 stamp" /><p class="wp-caption-text">MOTODEV :: Switch Perspective</p></div>
<p>Schon mal nicht schlecht &#8230; sch&#246;n w&#228;re noch eine bessere Integration des selbst erstellten Emulators in die IDE &#8230; ;)</p>
]]></content:encoded>
			<wfw:commentRss>http://mgsimon.de/2010/09/19/android-und-die-tiefen-der-quellen/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Netbook Pimp Up &#8211; Eee PC 901 GO &#8211; Speicher</title>
		<link>http://mgsimon.de/2010/05/08/netbook-pimp-up-eee-pc-901-go-speicher/</link>
		<comments>http://mgsimon.de/2010/05/08/netbook-pimp-up-eee-pc-901-go-speicher/#comments</comments>
		<pubDate>Sat, 08 May 2010 10:49:14 +0000</pubDate>
		<dc:creator>mg</dc:creator>
				<category><![CDATA[Linux & Unix]]></category>
		<category><![CDATA[uup]]></category>
		<category><![CDATA[Eee]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://mgsimon.de/?p=2337</guid>
		<description><![CDATA[Der Eee PC 901 GO von Asus ist mit ein GB RAM f&#252;r speicherhungrige Anwendungen (FireFox mit Flash, Java o.&#228;.) etwas f&#252;r die heutige Zeit unterdimensioniert. Kann aber durch einen gr&#246;&#223;eren Speicher erweitert werden &#8230; Der Einbau ist leicht. Einfach den vorhanden RAM auf der R&#252;ckseite im Erweiterungsschacht (zwei Schrauben) unter der Schutzfolie austauschen. Und [...]]]></description>
			<content:encoded><![CDATA[<p>Der <a target="_blank" href="http://www.amazon.de/dp/B001JQLH1A/ref=nosim?tag=mgs-21" rel="nofollow">Eee PC 901 GO</a> von Asus ist mit ein GB RAM f&#252;r speicherhungrige Anwendungen (FireFox mit Flash, Java o.&#228;.) etwas f&#252;r die heutige Zeit unterdimensioniert.</p>
<div id="attachment_2339" class="wp-caption alignnone" style="width: 452px"><img src="http://mgsimon.de/wp-content/uploads/2010/05/KingstonRAM2GB.jpg" alt="Kingston RAM :: 2GB" title="KingstonRAM2GB" width="442" height="259" class="size-full wp-image-2339 stamp" /><p class="wp-caption-text">Kingston RAM :: 2GB</p></div>
<p>Kann aber durch einen gr&#246;&#223;eren Speicher erweitert werden &#8230;</p>
<p><span id="more-2337"></span>Der Einbau ist leicht. Einfach den vorhanden RAM auf der R&#252;ckseite im Erweiterungsschacht (zwei Schrauben) unter der Schutzfolie austauschen.</p>
<div id="attachment_2361" class="wp-caption alignnone" style="width: 452px"><img src="http://mgsimon.de/wp-content/uploads/2010/05/EeePC901GORAM.jpg" alt="EeePC 901 GO :: RAM" title="EeePC901GORAM" width="442" height="248" class="size-full wp-image-2361 stamp" /><p class="wp-caption-text">EeePC 901 GO :: RAM</p></div>
<p>Und was hats gebracht &#8230;</p>
<div style="background-color: rgb(191, 228, 255); border:1px solid rgb(128, 201, 255); color: rgb(0, 0, 0); margin:0 0 1.5em; overflow:auto; padding: 3px;">
<img src="/wp-content/plugins/MyShortCodes/info.png" alt="Hinweis" title="Hinweis" width="24" height="24" style="margin: 4px 8px 0 0; float:left;"/>Der Performancetest wurde mit der Memory-, Java- und Java OpenGL Test Suite  (Phoronix Test Suite) unter Ubuntu Lucid Lynx 10.04 Netbook Remix  auf dem Nettbook <a target="_blank" href="http://www.amazon.de/dp/B001JQLH1A/ref=nosim?tag=mgs-21" rel="nofollow">Eee PC 901 GO</a> durchgef&#252;hrt.</div>
<p>Der Speicher selbst ist durch die Erweiterung nicht wirklich schneller geworden. </p>
<table width="100%">
<tr>
<tr>
<th>Test</th>
<th>1GB RAM</th>
<th>2GB RAM</th>
<th>Trend</th>
</tr>
<tr>
<td>Integer Add (MB/s)</td>
<td>2172,95</td>
<td>2184,74</td>
<td><img src="/mehr.gif" alt="mehr" /></td>
</tr>
<tr>
<td>Integer Copy (MB/s)</td>
<td>1809,06</td>
<td>1789,98</td>
<td><img src="/weniger.gif" alt="weniger" /></td>
</tr>
<tr>
<td>Integer Scale (MB/s)</td>
<td>1626,05</td>
<td>1620,50</td>
<td><img src="/weniger.gif" alt="weniger" /></td>
</tr>
<tr>
<td>Floating-Point Add (MB/s)</td>
<td>2170,67</td>
<td>2160,31</td>
<td><img src="/weniger.gif" alt="weniger" /></td>
</tr>
<tr>
<td>Stream Add (MB/s)</td>
<td>2129,07</td>
<td>2144,23</td>
<td><img src="/mehr.gif" alt="mehr" /></td>
</tr>
<tr>
<td>Stream Copy (MB/s)</td>
<td>1786,44</td>
<td>1794,55</td>
<td><img src="/mehr.gif" alt="mehr" /></td>
</tr>
<tr>
<td>Stream Scale (MB/s)</td>
<td>1781,21</td>
<td>1790,79</td>
<td><img src="/mehr.gif" alt="mehr" /></td>
</tr>
<tr>
<td>Read Cache (MB/s)</td>
<td>746,42</td>
<td>746,07</td>
<td><img src="/gleich.gif" alt="gleich" /></td>
</tr>
<tr>
<td>Write Cache (MB/s)</td>
<td>1198,41</td>
<td>1197,06</td>
<td><img src="/gleich.gif" alt="gleich" /></td>
</tr>
</table>
<p><center>Tabelle :: Memory Test Suite</center></p>
<p>Aber wenigstens wird kaum der Auslagerungsspeicher verwendet.</p>
<div id="attachment_2344" class="wp-caption alignnone" style="width: 452px"><img src="http://mgsimon.de/wp-content/uploads/2010/05/SystemueberwachungSpeicherSwap.png" alt="System&#252;berwachung :: Speicher / Swap" title="SystemueberwachungSpeicherSwap" width="442" height="44" class="size-full wp-image-2344 stamp" /><p class="wp-caption-text">System&#252;berwachung :: Speicher / Swap</p></div>
<p>Und die speicherhungrigen Anwendungen sehen da schon viel besser aus.</p>
<table width="100%">
<tr>
<tr>
<th>Test</th>
<th>1GB RAM</th>
<th>2GB RAM</th>
<th>Trend</th>
</tr>
<tr>
<td>Global Illumination + Image Synthesis</td>
<td>24,85</td>
<td>12,70</td>
<td><img src="/vielmehr.gif" alt="viel mehr" /></td>
</tr>
<tr>
<td>File Encryption Time</td>
<td>277,10</td>
<td>244,66</td>
<td><img src="/vielmehr.gif" alt="viel mehr" /></td>
</tr>
<tr>
<td>FFT Performance</td>
<td>72,59</td>
<td>116,57</td>
<td><img src="/vielmehr.gif" alt="viel mehr" /></td>
</tr>
<tr>
<td>SOR Performance</td>
<td>197,69</td>
<td>314,73</td>
<td><img src="/vielmehr.gif" alt="viel mehr" /></td>
</tr>
<tr>
<td>Monte Carlo Performance</td>
<td>33,13</td>
<td>57,87</td>
<td><img src="/vielmehr.gif" alt="viel mehr" /></td>
</tr>
<tr>
<td>Composite Performance</td>
<td>121,09</td>
<td>165,93</td>
<td><img src="/vielmehr.gif" alt="viel mehr" /></td>
</tr>
</table>
<p><center>Tabelle :: Java Test Suite</center></p>
<table width="100%">
<tr>
<tr>
<th>Test</th>
<th>1GB RAM</th>
<th>2GB RAM</th>
<th>Trend</th>
</tr>
<tr>
<td>Vector Graphics</td>
<td>77152,22</td>
<td>174271,87</td>
<td><img src="/vielmehr.gif" alt="viel mehr" /></td>
</tr>
<tr>
<td>Text Rendering</td>
<td>183,61</td>
<td>176,98</td>
<td><img src="/weniger.gif" alt="weniger" /></td>
</tr>
</table>
<p><center>Tabelle :: Java OpenGL Test Suite</center></p>
<p><strong>Fazit</strong></p>
<p>Die Performance hat sich gut verbessert, da Swap kaum noch ben&#246;tigt wird. Als n&#228;chstes vielleicht eine schnellere SSD oder gleich ein neues leistungsf&#228;higeres Netbook? :-)</p>
]]></content:encoded>
			<wfw:commentRss>http://mgsimon.de/2010/05/08/netbook-pimp-up-eee-pc-901-go-speicher/feed/</wfw:commentRss>
		<slash:comments>18</slash:comments>
		</item>
		<item>
		<title>Ubuntu Lucid Lynx 10.04 Netbook Remix</title>
		<link>http://mgsimon.de/2010/04/29/ubuntu-lucid-lynx-10-04-netbook-remix/</link>
		<comments>http://mgsimon.de/2010/04/29/ubuntu-lucid-lynx-10-04-netbook-remix/#comments</comments>
		<pubDate>Thu, 29 Apr 2010 20:49:11 +0000</pubDate>
		<dc:creator>mg</dc:creator>
				<category><![CDATA[Linux & Unix]]></category>
		<category><![CDATA[uup]]></category>
		<category><![CDATA[Eee]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://mgsimon.de/?p=2324</guid>
		<description><![CDATA[Ubuntu Lucid Lynx 10.04 Netbook Remix runtergeladen, USB-Stick Startmedium erstellt, gestartet, installiert, ein paar Einstellungen und l&#228;uft auf dem Netbook 901 GO aus der Eee PC Serie von Asus nicht wirklich langsam &#8230; &#8230; alles wird lila. :-)]]></description>
			<content:encoded><![CDATA[<p>Ubuntu Lucid Lynx 10.04 Netbook Remix <a href="http://www.ubuntu.com/getubuntu/download-netbook">runtergeladen</a>, <a href="http://mgsimon.de/wie-anaufnachzu/usb-stick-startmedium-erstellen/">USB-Stick Startmedium erstellt</a>, gestartet, installiert, ein paar <a href="http://mgsimon.de/2009/11/06/ubuntu-karmic-koala-9-10-netbook-remix/">Einstellungen</a> und l&#228;uft auf dem Netbook 901 GO aus der Eee PC Serie von Asus nicht wirklich langsam &#8230; </p>
<div id="attachment_2326" class="wp-caption alignnone" style="width: 452px"><img src="http://mgsimon.de/wp-content/uploads/2010/04/UbuntuLucidLynxNetbookRemixStartbildschirm.png" alt="Ubuntu Lucid Lynx Netbook Remix :: Startbildschirm" title="UbuntuLucidLynxNetbookRemixStartbildschirm" width="442" height="259" class="size-full wp-image-2326 stamp" /><p class="wp-caption-text">Ubuntu Lucid Lynx Netbook Remix :: Startbildschirm</p></div>
<p>&#8230; alles wird lila. :-)</p>
]]></content:encoded>
			<wfw:commentRss>http://mgsimon.de/2010/04/29/ubuntu-lucid-lynx-10-04-netbook-remix/feed/</wfw:commentRss>
		<slash:comments>9</slash:comments>
		</item>
		<item>
		<title>MyBookWorld MioNet Bug</title>
		<link>http://mgsimon.de/2010/04/16/mybookworld-mionet-bug/</link>
		<comments>http://mgsimon.de/2010/04/16/mybookworld-mionet-bug/#comments</comments>
		<pubDate>Fri, 16 Apr 2010 05:23:31 +0000</pubDate>
		<dc:creator>mg</dc:creator>
				<category><![CDATA[Linux & Unix]]></category>
		<category><![CDATA[uup]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[NAS]]></category>

		<guid isPermaLink="false">http://mgsimon.de/?p=2300</guid>
		<description><![CDATA[NAS MyBookWorld aktualisiert und der Ruhezustand ist in weite Ferne ger&#252;ckt? Auf der Suche nach dem &#220;belt&#228;ter sind mir Prozesse im Zusammenhang mit MioNet aufgefallen. Unabh&#228;ngig der Einstellung im Network Manager unter Remotezugriff wird der Dienst MioNet gestartet. Da muss sich im letzten Firmware-Update ein kleiner Fehler eingeschlichen haben. Das Start- / Stop-Skript /etc/init.d/S9M_mionet steuert [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://mgsimon.de/2009/12/27/mybookworld-und-firmware-aktualisierung/">NAS MyBookWorld aktualisiert</a> und der Ruhezustand ist in weite Ferne ger&#252;ckt? Auf der Suche nach dem &#220;belt&#228;ter sind mir Prozesse im Zusammenhang mit MioNet aufgefallen. </p>
<div id="attachment_2308" class="wp-caption alignnone" style="width: 452px"><img src="http://mgsimon.de/wp-content/uploads/2010/04/MyBookWorldEditionIINetworkmanagerRemotezugriffMioNet.png" alt="MyBookWorldEdition II :: Networkmanager / Remotezugriff MioNet" title="MyBookWorldEdition II :: Networkmanager / Remotezugriff MioNet" width="442" height="272" class="size-full wp-image-2308 stamp" /><p class="wp-caption-text">MyBookWorldEdition II :: Networkmanager / Remotezugriff MioNet</p></div>
<p>Unabh&#228;ngig der Einstellung im Network Manager unter Remotezugriff wird der Dienst MioNet gestartet. Da muss sich im letzten Firmware-Update ein kleiner Fehler eingeschlichen haben.</p>
<p><span id="more-2300"></span><div style="background-color: rgb(191, 228, 255); border:1px solid rgb(128, 201, 255); color: rgb(0, 0, 0); margin:0 0 1.5em; overflow:auto; padding: 3px;">
<img src="/wp-content/plugins/MyShortCodes/info.png" alt="Hinweis" title="Hinweis" width="24" height="24" style="margin: 4px 8px 0 0; float:left;"/>Der Fehler ist in der folgenden Konfiguration aufgetreten. Western Digital WDH2NC20000E My Book World Edition II 2TB NAS externe Festplatte, Firmware-Version 01.01.16 with MioNet 4.1.0.0.171</div></p>
<p>Das Start- / Stop-Skript /etc/init.d/S9M_mionet steuert mit der folgenden Bedingung &#252;ber die Semaphore /etc/.mionet_on_startup die Verf&#252;gbarkeit.</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">if</span> <span style="color: #7a0874; font-weight: bold;">&#91;</span> <span style="color: #000000; font-weight: bold;">!</span> <span style="color: #660033;">-f</span> <span style="color: #ff0000;">&quot;/etc/.mionet_on_startup&quot;</span>  <span style="color: #7a0874; font-weight: bold;">&#93;</span>; <span style="color: #000000; font-weight: bold;">then</span>
	<span style="color: #7a0874; font-weight: bold;">exit</span> <span style="color: #000000;">1</span>
<span style="color: #000000; font-weight: bold;">fi</span></pre></div></div>

<p>Wer oder was startet MioNet in regelm&#228;&#223;igen Abst&#228;nden?</p>
<p>Die Suche im MioNet-Installationsverzeichnis (/usr/mionet) zeigt den merkw&#252;rdigen Eintrag in monitorCVM.sh.</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #666666; font-style: italic;">## This will be called by Wistron's HW monitoring daemon every 1330 seconds.</span></pre></div></div>

<p><strong>L&#246;sung</strong></p>
<p>Einfach die Bedingung aus S9M_mionet am Anfang in monitorCVM.sh einf&#252;gen, dann ist endlich in Abh&#228;ngigkeit der Konfiguration Ruhe im NAS. :-)</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #666666; font-style: italic;">#!/bin/sh                                                                   </span>
...
<span style="color: #666666; font-style: italic;">#        do not add additional echos inside the function. (?)</span>
<span style="color: #666666; font-style: italic;">#                                                            </span>
&nbsp;
<span style="color: #000000; font-weight: bold;">if</span> <span style="color: #7a0874; font-weight: bold;">&#91;</span> <span style="color: #000000; font-weight: bold;">!</span> <span style="color: #660033;">-f</span> <span style="color: #ff0000;">&quot;/etc/.mionet_on_startup&quot;</span>  <span style="color: #7a0874; font-weight: bold;">&#93;</span>; <span style="color: #000000; font-weight: bold;">then</span>                 
 <span style="color: #7a0874; font-weight: bold;">exit</span> <span style="color: #000000;">1</span>                                                      
<span style="color: #000000; font-weight: bold;">fi</span>                                                           
&nbsp;
<span style="color: #007800;">DATE</span>=<span style="color: #000000; font-weight: bold;">`</span><span style="color: #c20cb9; font-weight: bold;">date</span><span style="color: #000000; font-weight: bold;">`</span>;                                                 
...</pre></div></div>

<p>/usr/mionet/monitorCVM.sh</p>
]]></content:encoded>
			<wfw:commentRss>http://mgsimon.de/2010/04/16/mybookworld-mionet-bug/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Ubuntu  VPN-PPTP  DD-WRT</title>
		<link>http://mgsimon.de/2010/04/13/ubuntu-vpn-pptp-dd-wrt/</link>
		<comments>http://mgsimon.de/2010/04/13/ubuntu-vpn-pptp-dd-wrt/#comments</comments>
		<pubDate>Tue, 13 Apr 2010 16:07:07 +0000</pubDate>
		<dc:creator>mg</dc:creator>
				<category><![CDATA[Linux & Unix]]></category>
		<category><![CDATA[uup]]></category>
		<category><![CDATA[DD-WRT]]></category>
		<category><![CDATA[Eee]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[VPN]]></category>

		<guid isPermaLink="false">http://mgsimon.de/?p=2264</guid>
		<description><![CDATA[Einfach eine weitere funktionierende VPN-Verbindung &#8230; &#8230; kurz notiert. Konfiguration 1. network-manager-pptp installieren $ sudo apt-get install network-manager-pptp 2. Die VPN-Verbindung &#252;ber das &#8220;Netzwerk-Manager-Applet&#8221; (&#8220;VPN-Verbindungen / VPN konfigurieren &#8230; > Hinzuf&#252;gen&#8221;) einrichten. &#8220;Point-to-Point Tunneling Protocol (PPTP) > Erzeugen &#8230;&#8221; und &#252;ber &#8220;Erweitert &#8230;&#8221; Verschl&#252;sselung aktivieren. 3. Network-Manager neu starten. $ sudo service network-manager restart VPN-Verbindung [...]]]></description>
			<content:encoded><![CDATA[<p>Einfach eine weitere funktionierende VPN-Verbindung &#8230;</p>
<div id="attachment_2283" class="wp-caption alignnone" style="width: 452px"><img src="http://mgsimon.de/wp-content/uploads/2010/04/Rythmbox_DAAP_Freigabe_Kings_Of_Leon_-_Closer.png" alt="VPN Beispiel :: Zugriff auf DAAP Freigabe &#252;ber VPN-PPTP (Rythmbox)" title="VPN Beispiel :: Zugriff auf DAAP Freigabe &#252;ber VPN-PPTP (Rythmbox)" width="442" height="248" class="size-full wp-image-2283 stamp" /><p class="wp-caption-text">VPN Beispiel :: Zugriff auf DAAP Freigabe &#252;ber VPN-PPTP (Rythmbox)</p></div>
<p>&#8230; kurz notiert.</p>
<p><span id="more-2264"></span><div style="background-color: rgb(191, 228, 255); border:1px solid rgb(128, 201, 255); color: rgb(0, 0, 0); margin:0 0 1.5em; overflow:auto; padding: 3px;">
<img src="/wp-content/plugins/MyShortCodes/info.png" alt="Hinweis" title="Hinweis" width="24" height="24" style="margin: 4px 8px 0 0; float:left;"/>Die VPN-Testverbindungen wurden mit NETGEAR WNR3500L (Firmware DD-WRT) &#252;ber willy.tel alias wilheml.tel und UMTS &#252;ber dem Mobilfunkanbieter O2 mit dem <a target="_blank" href="http://www.amazon.de/dp/B001JQLH1A/ref=nosim?tag=mgs-21" rel="nofollow">Eee PC 901 GO</a> von Asus (UNR 9.10) durchgef&#252;hrt.</div></p>
<p><strong>Konfiguration</strong></p>
<div style="background-color: rgb(191, 255, 191); border:1px solid rgb(128, 255, 128); color: rgb(0, 0, 0); margin:0 0 1.5em; overflow:auto; padding: 3px;">
<img src="/wp-content/plugins/MyShortCodes/tip.png" alt="Tipp" title="Tipp" width="24" height="24" style="margin: 4px 8px 0 0; float:left;" />Konfiguration DD-WRT und VPN-Server siehe z.B. <a href="http://mgsimon.de/2010/04/12/android-und-vpn-gefluester/">Android und VPN-Gefl&#252;ster</a>.</div>
<p>1. network-manager-pptp installieren</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">$ <span style="color: #c20cb9; font-weight: bold;">sudo</span> <span style="color: #c20cb9; font-weight: bold;">apt-get</span> <span style="color: #c20cb9; font-weight: bold;">install</span> network-manager-pptp</pre></div></div>

<p>2. Die VPN-Verbindung &#252;ber das &#8220;Netzwerk-Manager-Applet&#8221; (&#8220;VPN-Verbindungen / VPN konfigurieren &#8230; > Hinzuf&#252;gen&#8221;) einrichten.</p>
<div id="attachment_2279" class="wp-caption alignnone" style="width: 452px"><img src="http://mgsimon.de/wp-content/uploads/2010/04/Netzwerk-Manager-VPN-Verbindungstyp.png" alt="Netzwerk-Manager :: VPN-Verbindungstyp" title="Netzwerk-Manager-VPN-Verbindungstyp" width="442" height="249" class="size-full wp-image-2279 stamp" /><p class="wp-caption-text">Netzwerk-Manager :: VPN-Verbindungstyp</p></div>
<p>&#8220;Point-to-Point Tunneling Protocol (PPTP) > Erzeugen &#8230;&#8221;</p>
<div id="attachment_2281" class="wp-caption alignnone" style="width: 452px"><img src="http://mgsimon.de/wp-content/uploads/2010/04/Netzwerk-Manager-PPTP-Erzeugen.png" alt="Netzwerk-Manager :: PPTP-Erzeugen" title="Netzwerk-Manager-PPTP-Erzeugen" width="442" height="499" class="size-full wp-image-2281 stamp" /><p class="wp-caption-text">Netzwerk-Manager :: PPTP-Erzeugen</p></div>
<p>und &#252;ber &#8220;Erweitert &#8230;&#8221; Verschl&#252;sselung aktivieren.</p>
<div id="attachment_2282" class="wp-caption alignnone" style="width: 406px"><img src="http://mgsimon.de/wp-content/uploads/2010/04/Network-Manager-PPTP-Optionen.png" alt="Network-Manager :: PPTP-Optionen" title="Network-Manager-PPTP-Optionen" width="396" height="478" class="size-full wp-image-2282 stamp" /><p class="wp-caption-text">Network-Manager :: PPTP-Optionen</p></div>
<p>3. Network-Manager neu starten.</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">$ <span style="color: #c20cb9; font-weight: bold;">sudo</span> service network-manager restart</pre></div></div>

<p><strong>VPN-Verbindung</strong></p>
<p>Die VPN-Verbindung kann &#252;ber das &#8220;Netzwerk-Manager-Applet&#8221; (&#8220;VPN-Verbindungen / MyVPN&#8221;) hergestellt werde.</p>
<p><strong>Fazit</strong></p>
<p>Und nu &#8230; naja aufs lokale Netz zugreifen, Musik oder so &#8230; :-)</p>
]]></content:encoded>
			<wfw:commentRss>http://mgsimon.de/2010/04/13/ubuntu-vpn-pptp-dd-wrt/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>MOTODEV Studio for Android 64-bit</title>
		<link>http://mgsimon.de/2010/04/02/motodev-studio-for-android-64-bit/</link>
		<comments>http://mgsimon.de/2010/04/02/motodev-studio-for-android-64-bit/#comments</comments>
		<pubDate>Fri, 02 Apr 2010 10:07:35 +0000</pubDate>
		<dc:creator>mg</dc:creator>
				<category><![CDATA[Linux & Unix]]></category>
		<category><![CDATA[uup]]></category>
		<category><![CDATA[Android]]></category>
		<category><![CDATA[Eclipse]]></category>
		<category><![CDATA[Java]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://mgsimon.de/?p=2209</guid>
		<description><![CDATA[Die Entwicklungsumgebung f&#252;r Android besonders der Emulator ist unter Linux mit dem Workaround MOTODEV Studio for Android &#038; Ubuntu 64-Bit nicht wirklich schnell. Die aktuelle Version 1.2 wird in einer 64-bit Variante f&#252;r Linux zum Download unter MOTODEV Studio for Android v1.2 (64-bit) angeboten. Schneller, besser, stabiler &#8230; :-)]]></description>
			<content:encoded><![CDATA[<p>Die Entwicklungsumgebung f&#252;r Android besonders der Emulator ist unter Linux mit dem Workaround <a href="http://mgsimon.de/2010/01/23/motodev-studio-for-android-ubuntu-64-bit/">MOTODEV Studio for Android &#038; Ubuntu 64-Bit</a> nicht wirklich schnell. Die aktuelle Version 1.2 wird in einer 64-bit Variante f&#252;r Linux zum Download unter <a href="http://developer.motorola.com/docstools/motodevstudio/download/">MOTODEV Studio for Android v1.2 (64-bit)</a> angeboten. Schneller, besser, stabiler &#8230; :-)</p>
<div id="attachment_2215" class="wp-caption alignnone" style="width: 452px"><img src="http://mgsimon.de/wp-content/uploads/2010/04/MotoDevStudioAndroid64.png" alt="MOTODEV Studio for Android 64bit" title="MOTODEV Studio for Android 64bit" width="442" height="232" class="size-full wp-image-2215 stamp" /><p class="wp-caption-text">MOTODEV Studio for Android 64bit</p></div>
]]></content:encoded>
			<wfw:commentRss>http://mgsimon.de/2010/04/02/motodev-studio-for-android-64-bit/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Android und eBooks / Ubuntu und EPUB</title>
		<link>http://mgsimon.de/2010/01/24/android-und-ebooks-ubuntu-und-epub/</link>
		<comments>http://mgsimon.de/2010/01/24/android-und-ebooks-ubuntu-und-epub/#comments</comments>
		<pubDate>Sun, 24 Jan 2010 09:20:25 +0000</pubDate>
		<dc:creator>mg</dc:creator>
				<category><![CDATA[Linux & Unix]]></category>
		<category><![CDATA[uup]]></category>
		<category><![CDATA[Android]]></category>
		<category><![CDATA[eBook]]></category>
		<category><![CDATA[EPUB]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://mgsimon.de/?p=2144</guid>
		<description><![CDATA[Immer mehr elektronische B&#252;cher werden im weltweitem Netz angeboten. Galileo Press bietet zum Beispiel 25 IT-Fachb&#252;cher zum Download an. Man k&#246;nnte B&#252;cher unterwegs im Browser so lesen &#8230; &#8230; oder mit Calibre in das Format EPUB (electronic publication) konvertieren &#8230; &#8230; und angenehm mit einem eBook Reader auch offline lesen. eBook mit Calibre erstellen Die [...]]]></description>
			<content:encoded><![CDATA[<p>Immer mehr elektronische B&#252;cher werden im weltweitem Netz angeboten. Galileo Press bietet zum Beispiel <a href="http://www.galileocomputing.de/katalog/openbook">25 IT-Fachb&#252;cher</a> zum Download an.</p>
<p>Man k&#246;nnte B&#252;cher unterwegs im Browser so lesen &#8230;</p>
<div id="attachment_2173" class="wp-caption alignnone" style="width: 452px"><img src="http://mgsimon.de/wp-content/uploads/2010/01/BrowserEbook.png" alt="eBook :: Browser (Android)" title="BrowserEbook" width="442" height="248" class="size-full wp-image-2173 stamp" /><p class="wp-caption-text">eBook :: Browser (Android)</p></div>
<p>&#8230; oder mit Calibre in das Format EPUB (<strong>e</strong>lectronic <strong>pub</strong>lication) konvertieren &#8230;</p>
<p><span id="more-2144"></span><div id="attachment_2178" class="wp-caption alignnone" style="width: 452px"><img src="http://mgsimon.de/wp-content/uploads/2010/01/CalibreBibliothek.png" alt="Calibre :: Bibliothek" title="CalibreBibliothek" width="442" height="287" class="size-full wp-image-2178 stamp" /><p class="wp-caption-text">Calibre :: Bibliothek</p></div></p>
<p>&#8230; und angenehm mit einem eBook Reader auch <em>offline</em> lesen.</p>
<div id="attachment_2174" class="wp-caption alignnone" style="width: 452px"><img src="http://mgsimon.de/wp-content/uploads/2010/01/AndroidAppAldikoEbook.png" alt="eBook :: Aldiko" title="AndroidAppAldikoEbook" width="442" height="786" class="size-full wp-image-2174 stamp" /><p class="wp-caption-text">eBook :: Aldiko</p></div>
<p><strong>eBook mit Calibre erstellen</strong></p>
<p>Die Anwendung Calibre kann &#252;ber das Software-Center oder mit folgendem Befehl installiert und unter &#8220;Anwendungen / B&#252;ro / Calibre &#8230;&#8221; gestartet werden.</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">$ <span style="color: #c20cb9; font-weight: bold;">sudo</span> <span style="color: #c20cb9; font-weight: bold;">apt-get</span> <span style="color: #c20cb9; font-weight: bold;">install</span> calibre</pre></div></div>

<p>Das heruntergeladene eBook kann als Archiv &#252;ber &#8220;B&#252;cher hinzuf&#252;gen&#8221; in der Calibre Bibliothek aufgenommen werden und mit &#8220;In eBooks umwandeln&#8221; in das Format EPUB konvertiert werden.</p>
<p>Ohne Anpassungen im Quellmaterial noch nicht wirklich lesbar, aber einige regul&#228;re Ausdr&#252;cke sp&#228;ter und befreit von CSS ist das Ergebnis nach der Konvertierung brauchbar.</p>
<div style="background-color: rgb(191, 255, 191); border:1px solid rgb(128, 255, 128); color: rgb(0, 0, 0); margin:0 0 1.5em; overflow:auto; padding: 3px;">
<img src="/wp-content/plugins/MyShortCodes/tip.png" alt="Tipp" title="Tipp" width="24" height="24" style="margin: 4px 8px 0 0; float:left;" />Die Option &#8220;Tabellen linearisieren&#8221; und die zus&#228;tzliche Angabe &#8220;body { word-wrap: break-word }&#8221; unter &#8220;Extra CSS&#8221; verhindern horizontales auslaufen.</div>
<p>Immer und &#252;berall B&#252;cher dabei &#8230; :-)</p>
]]></content:encoded>
			<wfw:commentRss>http://mgsimon.de/2010/01/24/android-und-ebooks-ubuntu-und-epub/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>MOTODEV Studio for Android &amp; Ubuntu 64-Bit</title>
		<link>http://mgsimon.de/2010/01/23/motodev-studio-for-android-ubuntu-64-bit/</link>
		<comments>http://mgsimon.de/2010/01/23/motodev-studio-for-android-ubuntu-64-bit/#comments</comments>
		<pubDate>Sat, 23 Jan 2010 08:48:42 +0000</pubDate>
		<dc:creator>mg</dc:creator>
				<category><![CDATA[Linux & Unix]]></category>
		<category><![CDATA[uup]]></category>
		<category><![CDATA[Android]]></category>
		<category><![CDATA[Eclipse]]></category>
		<category><![CDATA[Java]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://mgsimon.de/?p=2152</guid>
		<description><![CDATA[Die Entwicklungsumgebung MOTODEV Studio for Android bietet gegen&#252;ber der Erweiterung f&#252;r Eclipse von Google zus&#228;tzlich Code Snippets, Device Management, Market Publishing und einen Database Explorer. Wie im Blog Linux und Ich :: Android-SDK mit Bezug auf 64-bit Ubuntu und das Samsung Galaxy beschrieben funktioniert auch die Entwicklungsumgebung von Motorala unter Ubuntu 64-Bit nicht. MOTODEV Studio [...]]]></description>
			<content:encoded><![CDATA[<p>Die Entwicklungsumgebung <a href="http://developer.motorola.com/docstools/motodevstudio/download/">MOTODEV Studio for Android</a> bietet gegen&#252;ber der Erweiterung f&#252;r Eclipse von Google zus&#228;tzlich Code Snippets, Device Management, Market Publishing und einen Database Explorer.</p>
<div id="attachment_2155" class="wp-caption alignnone" style="width: 452px"><img src="http://mgsimon.de/wp-content/uploads/2010/01/MOTODEVStudioAndroid.png" alt="MOTODEV Studio for Android" title="MOTODEVStudioAndroid" width="442" height="225" class="size-full wp-image-2155 stamp" /><p class="wp-caption-text">MOTODEV Studio for Android</p></div>
<p>Wie im <a href="http://linuxundich.de/de/ubuntu/android-sdk-mit-bezug-auf-64-bit-ubuntu-und-das-samsung-galaxy/">Blog Linux und Ich :: Android-SDK mit Bezug auf 64-bit Ubuntu und das Samsung Galaxy</a> beschrieben funktioniert auch die Entwicklungsumgebung von Motorala unter Ubuntu 64-Bit nicht. </p>
<p>MOTODEV Studio for Android unter Ubuntu 64-Bit-Version &#8230;</p>
<p><span id="more-2152"></span>Damit die IDE auch unter der 64-Bit-Version funktioniert k&#246;nnte die Standard VM auf die 32-Bit Variante ge&#228;ndert werden &#8230;</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">$ <span style="color: #c20cb9; font-weight: bold;">sudo</span> update-alternatives <span style="color: #660033;">--config</span> java</pre></div></div>

<p>&#8230; oder einfach die Entwicklungsumgebung mit folgendem Parameter gestartet werden.</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">.<span style="color: #000000; font-weight: bold;">/</span>motodevstudio <span style="color: #660033;">-vm</span> <span style="color: #000000; font-weight: bold;">/</span>usr<span style="color: #000000; font-weight: bold;">/</span>lib<span style="color: #000000; font-weight: bold;">/</span>jvm<span style="color: #000000; font-weight: bold;">/</span>ia32-java-<span style="color: #000000;">6</span>-sun<span style="color: #000000; font-weight: bold;">/</span>jre<span style="color: #000000; font-weight: bold;">/</span>bin<span style="color: #000000; font-weight: bold;">/</span>java</pre></div></div>

<div style="background-color: rgb(191, 255, 191); border:1px solid rgb(128, 255, 128); color: rgb(0, 0, 0); margin:0 0 1.5em; overflow:auto; padding: 3px;">
<img src="/wp-content/plugins/MyShortCodes/tip.png" alt="Tipp" title="Tipp" width="24" height="24" style="margin: 4px 8px 0 0; float:left;" /><em>Warum die 64-Bit VM beibehalten?</em><br />
Ein &#8220;Suchen und Ersetzen&#8221; &#252;ber 300 Dateien in JEdit mit einem etwas komplexeren regul&#228;ren Ausdruck dauert mit der 32-Bit VM mehrere Minuten. Die OpenJDK 64-Bit Version ben&#246;tigt wenige Sekunden.</div>
<p><strong>Notizen</strong></p>
<p>Installation der 32-Bit virtual Machine.</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">$ <span style="color: #c20cb9; font-weight: bold;">sudo</span> <span style="color: #c20cb9; font-weight: bold;">apt-get</span> <span style="color: #c20cb9; font-weight: bold;">install</span> ia32-sun-java6-bin</pre></div></div>

<p>Die installierten Varianten f&#252;r Java befinden sich unter /usr/lib/jvm/.</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">$ <span style="color: #c20cb9; font-weight: bold;">ls</span> <span style="color: #660033;">-l</span> <span style="color: #000000; font-weight: bold;">/</span>usr<span style="color: #000000; font-weight: bold;">/</span>lib<span style="color: #000000; font-weight: bold;">/</span>jvm
insgesamt <span style="color: #000000;">12</span>
... default-java -<span style="color: #000000; font-weight: bold;">&gt;</span> java-<span style="color: #000000;">6</span>-openjdk
... ia32-java-<span style="color: #000000;">6</span>-sun -<span style="color: #000000; font-weight: bold;">&gt;</span> ia32-java-<span style="color: #000000;">6</span>-sun-1.6.0.15
... ia32-java-<span style="color: #000000;">6</span>-sun-1.6.0.15
... java-1.6.0-openjdk -<span style="color: #000000; font-weight: bold;">&gt;</span> java-<span style="color: #000000;">6</span>-openjdk
... java-<span style="color: #000000;">6</span>-openjdk
... java-<span style="color: #000000;">6</span>-sun -<span style="color: #000000; font-weight: bold;">&gt;</span> java-<span style="color: #000000;">6</span>-sun-1.6.0.15
... java-<span style="color: #000000;">6</span>-sun-1.6.0.15</pre></div></div>

<p>Information der Standard VM anzeigen.</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">$ java <span style="color: #660033;">-version</span>
java version <span style="color: #ff0000;">&quot;1.6.0_0&quot;</span>
OpenJDK Runtime Environment <span style="color: #7a0874; font-weight: bold;">&#40;</span>IcedTea6 1.6.1<span style="color: #7a0874; font-weight: bold;">&#41;</span> <span style="color: #7a0874; font-weight: bold;">&#40;</span>6b16-1.6.1-3ubuntu1<span style="color: #7a0874; font-weight: bold;">&#41;</span>
OpenJDK <span style="color: #000000;">64</span>-Bit Server VM <span style="color: #7a0874; font-weight: bold;">&#40;</span>build <span style="color: #000000;">14.0</span>-b16, mixed mode<span style="color: #7a0874; font-weight: bold;">&#41;</span></pre></div></div>

]]></content:encoded>
			<wfw:commentRss>http://mgsimon.de/2010/01/23/motodev-studio-for-android-ubuntu-64-bit/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

