<?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 knowledge rack &#187; Linux</title>
	<atom:link href="http://ww2624.awi2.de/blog2/?feed=rss2&#038;cat=10" rel="self" type="application/rss+xml" />
	<link>http://ww2624.awi2.de/blog2</link>
	<description>Probleme aus Studium und Alltag</description>
	<lastBuildDate>Sat, 17 Jul 2010 13:04:33 +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>LaTeX Makefile &#8211; Temporäre Dateien automatisch verschieben</title>
		<link>http://ww2624.awi2.de/blog2/?p=141</link>
		<comments>http://ww2624.awi2.de/blog2/?p=141#comments</comments>
		<pubDate>Sat, 17 Jul 2010 13:04:33 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Latex]]></category>
		<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://ww2624.awi2.de/blog2/?p=141</guid>
		<description><![CDATA[Hallo Zusammen, es war jetzt endlich an der Zeit ein Makefile zu schreiben, das es erlaubt, die von pdflatex erstellen Dateien automatisch zu verschieben. Zu diesen temporären Dateien gehören beispielsweise .aux oder .out. Zudem wird die ausgegebene PDF-Datei in ein Ausgabe-Verzeichnis verschoben. Mit Hilfe des Parameters &#8220;-output-directory&#8221; des Kommandozeilenbefehls pdflatex ist das so nicht möglich. [...]]]></description>
			<content:encoded><![CDATA[<p>Hallo Zusammen,<br />
es war jetzt endlich an der Zeit ein Makefile zu schreiben, das es erlaubt, die von <code>pdflatex</code> erstellen Dateien automatisch zu verschieben. Zu diesen temporären Dateien gehören beispielsweise <code>.aux</code> oder<code> .out</code>. Zudem wird die ausgegebene PDF-Datei in ein Ausgabe-Verzeichnis verschoben. Mit Hilfe des Parameters &#8220;-output-directory&#8221; des Kommandozeilenbefehls pdflatex ist das so nicht möglich. Hiermit kann lediglich der Pfad für alle temporären Dateien gesetzt werden.</p>

<div class="wp_syntax"><div class="code"><pre class="make" style="font-family:monospace;">FILE<span style="color: #004400;">=</span>interimReport
DEPS<span style="color: #004400;">=*.</span>tex
TMP_FILETYPES<span style="color: #004400;">=</span>bbl blg log aux out toc lof lot idx acr alg acn glg glo ind idx lol gls ilg
FILE_DEPS<span style="color: #004400;">=$</span><span style="color: #004400;">&#40;</span><span style="color: #000088;">FILE</span><span style="color: #004400;">&#41;</span><span style="color: #004400;">.</span>tex <span style="color: #004400;">$</span><span style="color: #004400;">&#40;</span><span style="color: #000088;">DEPS</span><span style="color: #004400;">&#41;</span>
&nbsp;
all<span style="color: #004400;">:</span> <span style="color: #004400;">$</span><span style="color: #004400;">&#40;</span><span style="color: #000088;">FILE</span><span style="color: #004400;">&#41;</span><span style="color: #004400;">.</span>pdf moveOutput cleanup
&nbsp;
<span style="color: #004400;">$</span><span style="color: #004400;">&#40;</span><span style="color: #000088;">FILE</span><span style="color: #004400;">&#41;</span><span style="color: #004400;">.</span>pdf<span style="color: #004400;">:</span> <span style="color: #004400;">$</span><span style="color: #004400;">&#40;</span><span style="color: #000088;">FILE_DEPS</span><span style="color: #004400;">&#41;</span>
        pdflatex <span style="color: #004400;">$</span><span style="color: #004400;">&#40;</span><span style="color: #000088;">FILE</span><span style="color: #004400;">&#41;</span>
        bibtex <span style="color: #004400;">$</span><span style="color: #004400;">&#40;</span><span style="color: #000088;">FILE</span><span style="color: #004400;">&#41;</span>
        pdflatex <span style="color: #004400;">$</span><span style="color: #004400;">&#40;</span><span style="color: #000088;">FILE</span><span style="color: #004400;">&#41;</span>
        pdflatex <span style="color: #004400;">$</span><span style="color: #004400;">&#40;</span><span style="color: #000088;">FILE</span><span style="color: #004400;">&#41;</span>
&nbsp;
cleanup<span style="color: #004400;">:</span>
        if test <span style="color: #004400;">-</span>d tmp<span style="color: #004400;">;</span> then true<span style="color: #004400;">;</span> <span style="color: #666622; font-weight: bold;">else</span> mkdir tmp<span style="color: #004400;">;</span> fi
        if test <span style="color: #004400;">-</span>e <span style="color: #004400;">$</span><span style="color: #004400;">&#40;</span><span style="color: #000088;">FILE</span><span style="color: #004400;">&#41;</span><span style="color: #004400;">-</span>blx<span style="color: #004400;">.</span>bib<span style="color: #004400;">;</span> then mv <span style="color: #004400;">-</span>t <span style="color: #004400;">./</span>tmp <span style="color: #004400;">$</span><span style="color: #004400;">&#40;</span><span style="color: #000088;">FILE</span><span style="color: #004400;">&#41;</span><span style="color: #004400;">-</span>blx<span style="color: #004400;">.</span>bib<span style="color: #004400;">;</span> fi
        for type in <span style="color: #004400;">$</span><span style="color: #004400;">&#40;</span><span style="color: #000088;">TMP_FILETYPES</span><span style="color: #004400;">&#41;</span><span style="color: #004400;">;</span> do for file in <span style="color: #000088; font-weight: bold;">$$</span><span style="color: #004400;">&#40;</span>find <span style="color: #004400;">.</span> <span style="color: #004400;">-</span>maxdepth <span style="color: #CC2200;">1</span> <span style="color: #004400;">-</span>name <span style="color: #CC2200;">&quot;*.$$type&quot;</span><span style="color: #004400;">&#41;</span><span style="color: #004400;">;</span> do mv <span style="color: #000088; font-weight: bold;">$$</span>file tmp<span style="color: #004400;">;</span> done<span style="color: #004400;">;</span> done
&nbsp;
moveOutput<span style="color: #004400;">:</span>
        if test <span style="color: #004400;">-</span>d out<span style="color: #004400;">;</span> then true<span style="color: #004400;">;</span> <span style="color: #666622; font-weight: bold;">else</span> mkdir out<span style="color: #004400;">;</span> fi
        if test <span style="color: #004400;">-</span>e <span style="color: #004400;">$</span><span style="color: #004400;">&#40;</span><span style="color: #000088;">FILE</span><span style="color: #004400;">&#41;</span><span style="color: #004400;">.</span>pdf<span style="color: #004400;">;</span> then mv <span style="color: #004400;">$</span><span style="color: #004400;">&#40;</span><span style="color: #000088;">FILE</span><span style="color: #004400;">&#41;</span><span style="color: #004400;">.</span>pdf out<span style="color: #004400;">;</span> fi</pre></div></div>

]]></content:encoded>
			<wfw:commentRss>http://ww2624.awi2.de/blog2/?feed=rss2&amp;p=141</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>UbuntuOne kann keine Verbindung herstellen</title>
		<link>http://ww2624.awi2.de/blog2/?p=111</link>
		<comments>http://ww2624.awi2.de/blog2/?p=111#comments</comments>
		<pubDate>Tue, 05 Jan 2010 22:12:59 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[ubuntuone]]></category>

		<guid isPermaLink="false">http://ww2624.awi2.de/blog/?p=111</guid>
		<description><![CDATA[An meinem Notebook gehe ich mal über WLAN mit verschiedenen systemweiten Proxys ins Internet und mal ohne Proxy Server (je nach Lokalität). Jedoch kam dabei der UbuntuOne Dienst so sehr durcheinander, dass generell keine Verbindung mehr möglich war. Zur kompletten Neuinstallation hat mir folgenden Anleitung geholfen (von forum.ubuntuusers.de): CLIENT ENTFERNEN 1. Ubuntu One Client schließen [...]]]></description>
			<content:encoded><![CDATA[<p>An meinem Notebook gehe ich mal über WLAN mit verschiedenen systemweiten Proxys ins Internet und mal ohne Proxy Server (je nach Lokalität). Jedoch kam dabei der UbuntuOne Dienst so sehr durcheinander, dass generell keine Verbindung mehr möglich war. Zur kompletten Neuinstallation hat mir folgenden Anleitung geholfen (von forum.ubuntuusers.de):</p>
<p><strong>CLIENT ENTFERNEN</strong></p>
<p>1. Ubuntu One Client schließen<br />
2.</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;">rm</span> <span style="color: #660033;">-rf</span> ~<span style="color: #000000; font-weight: bold;">/</span>.local<span style="color: #000000; font-weight: bold;">/</span>share<span style="color: #000000; font-weight: bold;">/</span>ubuntuone
<span style="color: #c20cb9; font-weight: bold;">rm</span> <span style="color: #660033;">-rf</span> ~<span style="color: #000000; font-weight: bold;">/</span>.cache<span style="color: #000000; font-weight: bold;">/</span>ubuntuone
<span style="color: #c20cb9; font-weight: bold;">rm</span> <span style="color: #660033;">-rf</span> ~<span style="color: #000000; font-weight: bold;">/</span>.config<span style="color: #000000; font-weight: bold;">/</span>ubuntuone
<span style="color: #c20cb9; font-weight: bold;">mv</span> ~<span style="color: #000000; font-weight: bold;">/</span>Ubuntu\ One<span style="color: #000000; font-weight: bold;">/</span> ~<span style="color: #000000; font-weight: bold;">/</span>Ubuntu\ One_old<span style="color: #000000; font-weight: bold;">/</span></pre></div></div>

<p>3. Menü öffnen Anwendungen-&gt;Zubehör-&gt;Passwörter und Verschlüsselung, gehe zum Passwort tab, lösche Ubuntu One token. Er kann auch &#8220;Desktop Couch user authentication&#8221; heißen. Mehrere Einträge können geschlöscht werden.</p>
<p>4. (optional) Prüfen, ob UbuntuOne Prozesse laufen:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">ps</span> <span style="color: #660033;">-aux</span> <span style="color: #000000; font-weight: bold;">|</span> <span style="color: #c20cb9; font-weight: bold;">grep</span> ubuntuone</pre></div></div>

<p>Prozesse beenden mit</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">kill</span> <span style="color: #660033;">-9</span> <span style="color: #000000; font-weight: bold;">&lt;</span>PROZESS_ID<span style="color: #000000; font-weight: bold;">&gt;</span></pre></div></div>

<p>5. Pakete  komplett entfernen</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> purge ubuntuone-client<span style="color: #000000; font-weight: bold;">*</span> python-ubuntuone-storage<span style="color: #000000; font-weight: bold;">*</span></pre></div></div>

<p><strong>CLIENT NEU INSTALLIEREN</strong></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> ubuntuone-client<span style="color: #000000; font-weight: bold;">*</span> python-ubuntuone-storage<span style="color: #000000; font-weight: bold;">*</span></pre></div></div>

<p>6. Den Ordner ~/Ubuntu One öffnen und eine Datei erstellen, die nicht leer ist<br />
6. Open Anwendungen-&gt;Internet-&gt;Ubuntu One und füge deinen Computer bei Ubuntu One hinzu, auf der Seite, die sich nach dem Starten von Ubuntu One öffnet.</p>
]]></content:encoded>
			<wfw:commentRss>http://ww2624.awi2.de/blog2/?feed=rss2&amp;p=111</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ubuntu 9.10: ISO Datei mit Inhalt eines Verzeichnis erstellen</title>
		<link>http://ww2624.awi2.de/blog2/?p=72</link>
		<comments>http://ww2624.awi2.de/blog2/?p=72#comments</comments>
		<pubDate>Sat, 07 Nov 2009 15:19:34 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[virtualbox]]></category>
		<category><![CDATA[iso datei erstellen]]></category>

		<guid isPermaLink="false">http://ww2624.awi2.de/blog/?p=72</guid>
		<description><![CDATA[Hallo Leute, soeben hatte ich das Problem, dass ich ein Verzeichnis in der VirtualBox als CD-Laufwerk einbinden wollte/musste. Mein Vorgehen war folgendes: 1. ISO-Datei mit dem Inhalt eines Verzeichnis/Ordner erstellen. Dies kann man über den unterstehenden shell-Befehl erreichen: mkisofs -r -J -o abbild.iso content_directory 2. Danach kann man die ISO-Datei als CD-ROM Abbild in der [...]]]></description>
			<content:encoded><![CDATA[<p>Hallo Leute,</p>
<p>soeben hatte ich das Problem, dass ich ein Verzeichnis in der VirtualBox als CD-Laufwerk einbinden wollte/musste.<br />
Mein Vorgehen war folgendes:</p>
<p>1. ISO-Datei mit dem Inhalt eines Verzeichnis/Ordner erstellen. Dies kann man über den unterstehenden shell-Befehl erreichen:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">mkisofs <span style="color: #660033;">-r</span> <span style="color: #660033;">-J</span> <span style="color: #660033;">-o</span> abbild.iso content_directory</pre></div></div>

<p>2. Danach kann man die ISO-Datei als CD-ROM Abbild in der Virtualbox einbinden.</p>
]]></content:encoded>
			<wfw:commentRss>http://ww2624.awi2.de/blog2/?feed=rss2&amp;p=72</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ubuntu 9 (Jaunty) &#8211; Dokument/Datei als PDF drucken</title>
		<link>http://ww2624.awi2.de/blog2/?p=68</link>
		<comments>http://ww2624.awi2.de/blog2/?p=68#comments</comments>
		<pubDate>Sun, 18 Oct 2009 13:34:14 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[cups]]></category>
		<category><![CDATA[drucken]]></category>

		<guid isPermaLink="false">http://ww2624.awi2.de/blog/?p=68</guid>
		<description><![CDATA[Heute habe ich mich mal um das Problem gekümmert, dass das Drucken eines Dokuments als PDF unter Ubuntu noch nicht so funktioniert hat wie ich mir das vorstelle. Zunächst habe ich das entsprechend benötigte Paket ausfindig gemacht und installiert: # Deinstallieren, falls man davor zuviel rumgespielt hat sudo apt-get remove cups-pdf # Paket neu installieren [...]]]></description>
			<content:encoded><![CDATA[<p>Heute habe ich mich mal um das Problem gekümmert, dass das Drucken eines Dokuments als PDF unter Ubuntu noch nicht so funktioniert hat wie ich mir das vorstelle. Zunächst habe ich das entsprechend benötigte Paket ausfindig gemacht und installiert:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #666666; font-style: italic;"># Deinstallieren, falls man davor zuviel rumgespielt hat</span>
<span style="color: #c20cb9; font-weight: bold;">sudo</span> <span style="color: #c20cb9; font-weight: bold;">apt-get</span> remove cups-pdf
<span style="color: #666666; font-style: italic;"># Paket neu installieren</span>
<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> cups-pdf</pre></div></div>

<p>In der Datei  /etc/cups/cups-pdf.conf ist der Speicherpfad gespeichert, der für die erzeugten PDF benutzt wird. Dies ist in der ersten (nicht zu den Kommentaren gehörenden) Zeile zu sehen: <code>Out ${HOME}/PDF</code>.</p>
<p>Als Standardeinstellung der Ordner PDF im Homeverzeichnis des Benutzers festgelegt.<br />
<strong>Wichtig dabei ist, dass dieser Ordner erst erstellt werden muss, damit das Drucken auch funktioniert.</strong></p>
]]></content:encoded>
			<wfw:commentRss>http://ww2624.awi2.de/blog2/?feed=rss2&amp;p=68</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>LaTeX: Neues LaTeX Paket manuell von CPAN installieren</title>
		<link>http://ww2624.awi2.de/blog2/?p=65</link>
		<comments>http://ww2624.awi2.de/blog2/?p=65#comments</comments>
		<pubDate>Mon, 12 Oct 2009 20:15:21 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Latex]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[cpan]]></category>
		<category><![CDATA[paket]]></category>

		<guid isPermaLink="false">http://ww2624.awi2.de/blog/?p=65</guid>
		<description><![CDATA[Mit Ubuntu und einigen anderen Linux-Distributionen hat man das Problem, dass oft nicht die neuste LaTeX-Distribution zur Verfügung steht. Daher entsteht häufig die Notwendigkeit neue LaTeX-Pakete manuell zu installieren. Hier wird kurz das prinzipielle Vorgehen beschrieben. 1. Paket-Archiv von http://www.ctan.org herunterlagen 2. Datei Entpacken (z.B. unzip .zip) 3. Dateien in TeX Verzeichnis kopieren sudo cp [...]]]></description>
			<content:encoded><![CDATA[<p>Mit Ubuntu und einigen anderen Linux-Distributionen hat man das Problem, dass oft nicht die neuste LaTeX-Distribution zur Verfügung steht. Daher entsteht häufig die Notwendigkeit neue LaTeX-Pakete manuell zu installieren. Hier wird kurz das prinzipielle Vorgehen beschrieben.</p>
<p>1. Paket-Archiv von <a href="http://www.ctan.org">http://www.ctan.org</a> herunterlagen<br />
2. Datei Entpacken (z.B. unzip
<paketname>.zip)<br />
3. Dateien in TeX Verzeichnis kopieren
<pre>sudo cp -R ORDNERNAME /usr/share/texmf-texlive/tex/latex/</pre>
<p>4. LaTeX Paketdatenbank aktualisieren
<pre>texhash</pre>
]]></content:encoded>
			<wfw:commentRss>http://ww2624.awi2.de/blog2/?feed=rss2&amp;p=65</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Linux: apt-get update GPG error NO_PUBKEY</title>
		<link>http://ww2624.awi2.de/blog2/?p=60</link>
		<comments>http://ww2624.awi2.de/blog2/?p=60#comments</comments>
		<pubDate>Mon, 12 Oct 2009 19:45:51 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[apt-get]]></category>
		<category><![CDATA[pgp]]></category>
		<category><![CDATA[update]]></category>

		<guid isPermaLink="false">http://ww2624.awi2.de/blog/?p=60</guid>
		<description><![CDATA[Problem: Nach dem hinzufügen neuer Paketquellen liefert der Kommandozeilenbefehl apt-get update die folgende Fehlermeldung: GPG error: : Die folgenden Signaturen konnten nicht überprüft werden, weil ihr öffentlicher Schlüssel nicht verfügbar ist: NO_PUBKEY D2BF4AA309C5B094 W: Probieren Sie »apt-get update«, um diese Probleme zu korrigieren. Lösung ist es den key manuell zu besorgen: gpg --keyserver subkeys.pgp.net --recv-keys [...]]]></description>
			<content:encoded><![CDATA[<p>Problem: Nach dem hinzufügen neuer Paketquellen liefert  der Kommandozeilenbefehl
<pre>apt-get update</pre>
<p> die folgende Fehlermeldung:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">GPG error: : Die folgenden Signaturen konnten nicht überprüft werden, 
weil ihr öffentlicher Schlüssel nicht verfügbar ist: NO_PUBKEY D2BF4AA309C5B094
W: Probieren Sie »<span style="color: #c20cb9; font-weight: bold;">apt-get</span> update«, um diese Probleme zu korrigieren.</pre></div></div>

<p>Lösung ist es den key manuell zu besorgen:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">gpg <span style="color: #660033;">--keyserver</span> subkeys.pgp.net <span style="color: #660033;">--recv-keys</span> 09C5B094   
<span style="color: #666666; font-style: italic;">#Hier die letzten 8 Ziffern der oben genannten Fehlermeldung verwenden</span>
<span style="color: #666666; font-style: italic;"># das Importieren kann nun einige Zeit dauern</span>
<span style="color: #666666; font-style: italic;"># (evtl. kann man dies durch einen anderen keyserver beschleunigen)</span>
gpg <span style="color: #660033;">--armor</span> <span style="color: #660033;">--export</span> 09C5B094 <span style="color: #000000; font-weight: bold;">|</span> <span style="color: #c20cb9; font-weight: bold;">apt-key</span> add -</pre></div></div>

<p>Danach sollte der apt-get Befehl wieder durchlaufen.</p>
]]></content:encoded>
			<wfw:commentRss>http://ww2624.awi2.de/blog2/?feed=rss2&amp;p=60</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Linux: Make filesystem writable in single user mode</title>
		<link>http://ww2624.awi2.de/blog2/?p=31</link>
		<comments>http://ww2624.awi2.de/blog2/?p=31#comments</comments>
		<pubDate>Sun, 27 Sep 2009 05:07:43 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://ww2624.awi2.de/blog/?p=31</guid>
		<description><![CDATA[How to make linux filesystem in single user mode writable: Boot linux in single mode (add the kernel option &#8220;init=/bin/bash&#8221; by editing with grub-load) If cant made it, here is a short manuel http://www.cyberciti.biz/faq/grub-boot-into-single-user-mode. By the way the single user mode can be use to reset the root password. Remount the root-filesystem (use following command [...]]]></description>
			<content:encoded><![CDATA[<p>How to make linux filesystem in single user mode writable:</p>
<ul>
<li>Boot linux in single mode (add the kernel option &#8220;init=/bin/bash&#8221; by editing with grub-load)<br />
If cant made it, here is a short manuel http://www.cyberciti.biz/faq/grub-boot-into-single-user-mode.<br />
By the way the single user mode can be use to reset the root password.</li>
<li>Remount the root-filesystem (use following command &#8220;mount -o remount,rw /&#8221;)</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://ww2624.awi2.de/blog2/?feed=rss2&amp;p=31</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ubuntu 9 (Jaunty) &#8211; Eclipse 3.5(Galileo) mit Subclipse Plugin als Paket</title>
		<link>http://ww2624.awi2.de/blog2/?p=22</link>
		<comments>http://ww2624.awi2.de/blog2/?p=22#comments</comments>
		<pubDate>Thu, 24 Sep 2009 18:41:15 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://ww2624.awi2.de/blog/?p=22</guid>
		<description><![CDATA[Ich hatte bei mir das Problem, dass im offiziellen Ubuntu-Repository nur Eclipse 3.2 zur Verfügung steht. Beim manuell heruntergeladenen Eclipse 3.5 (von eclipse) gab es jedoch Probleme mit Codevervollständigung. (Keine Java-Standardklasse wurde erkannt) Soeben habe ich eine funktionsfähige Lösung gefunden: Hier hat sich jemand mal die Mühe gemacht ein Paket mit der neuen Eclipse Version [...]]]></description>
			<content:encoded><![CDATA[<p>Ich hatte bei mir das Problem, dass im offiziellen Ubuntu-Repository nur  Eclipse 3.2 zur Verfügung steht.<br />
Beim manuell heruntergeladenen Eclipse 3.5 (von eclipse) gab es  jedoch Probleme mit Codevervollständigung.<br />
(Keine Java-Standardklasse wurde erkannt)</p>
<p>Soeben habe ich eine funktionsfähige Lösung gefunden:</p>
<p>Hier hat sich jemand mal die Mühe gemacht ein Paket mit der neuen  Eclipse Version zu bauen:<br />
<a class="moz-txt-link-freetext" href="http://blog.yogarine.com/2009/08/eclipse-35-galileo-packages-for-ubuntu.html">http://blog.yogarine.com/2009/08/eclipse-35-galileo-packages-for-ubuntu.html</a><br />
danach einfach &#8220;apt-get install eclipse-pdt&#8221; installieren</p>
<p>Und dann klappts das auch bei mir mit dem Subclipse-Plugin <span class="moz-smiley-s1"><span> <img src='http://ww2624.awi2.de/blog2/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  </span></span> &#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://ww2624.awi2.de/blog2/?feed=rss2&amp;p=22</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ubuntu 9 (Jaunty) DualCore &#8211; Kern vorübergehend abschalten</title>
		<link>http://ww2624.awi2.de/blog2/?p=20</link>
		<comments>http://ww2624.awi2.de/blog2/?p=20#comments</comments>
		<pubDate>Thu, 24 Sep 2009 18:37:16 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://ww2624.awi2.de/blog/?p=20</guid>
		<description><![CDATA[Für das experimentieren mit Threads kann es hilfreich sein, den zweiten Kern eines Dual-Core Prozessors abzuschalten. Hierzu kann sich leicht eigene Befehl definieren, die in der Datei ~/.bashrc zu speichern sind: alias enableCore=&#8217;echo 1 &#62;&#62; /sys/devices/system/cpu/cpu1/online&#8217; alias disableCore=&#8217;echo 0 &#62;&#62; /sys/devices/system/cpu/cpu1/online&#8217; alias showCores=&#8217;cat /proc/cpuinfo&#8217;]]></description>
			<content:encoded><![CDATA[<p>Für das experimentieren mit Threads kann es hilfreich sein, den zweiten Kern eines Dual-Core Prozessors abzuschalten.</p>
<p>Hierzu kann sich leicht eigene Befehl definieren, die in der Datei ~/.bashrc zu speichern sind:</p>
<p>alias enableCore=&#8217;echo 1 &gt;&gt; /sys/devices/system/cpu/cpu1/online&#8217;<br />
alias disableCore=&#8217;echo 0 &gt;&gt; /sys/devices/system/cpu/cpu1/online&#8217;<br />
alias showCores=&#8217;cat /proc/cpuinfo&#8217;</p>
]]></content:encoded>
			<wfw:commentRss>http://ww2624.awi2.de/blog2/?feed=rss2&amp;p=20</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
