<?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>Fusselwurm &#187; Linux</title>
	<atom:link href="http://www.fusselwurm.de/wp/category/linux/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.fusselwurm.de/wp</link>
	<description>$ geek licence revoked_</description>
	<lastBuildDate>Sun, 05 Feb 2012 20:21:00 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>continuous repository checkin visualization with gource</title>
		<link>http://www.fusselwurm.de/wp/2012/01/20/continuous-repository-checkin-visualization-with-gource/</link>
		<comments>http://www.fusselwurm.de/wp/2012/01/20/continuous-repository-checkin-visualization-with-gource/#comments</comments>
		<pubDate>Fri, 20 Jan 2012 23:00:43 +0000</pubDate>
		<dc:creator>Fusselwurm</dc:creator>
				<category><![CDATA[Anleitung]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[gource]]></category>
		<category><![CDATA[version control]]></category>

		<guid isPermaLink="false">http://www.fusselwurm.de/wp/?p=474</guid>
		<description><![CDATA[Discovered gource the day before yesterday. Want! In the office! In realtime! Gource can read the logs from existing repositories. But to continuosly feed it with incoming revisions, we&#8217;ll attach a post-commit hook to the SVN repository that creates a custom log format, which is then written to a file as the changes come in. [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://code.google.com/p/gource/">Discovered gource</a> the day before yesterday. Want! In the office! In realtime! </p>
<pre class="brush: bash; title: ; notranslate">
sudo apt-get install gource
</pre>
<p>Gource can read the logs from existing repositories. </p>
<p>But to continuosly feed it with incoming revisions, we&#8217;ll attach a post-commit hook to the SVN repository that creates a custom log format, which is then written to a file as the changes come in.</p>
<p>Add to or execute from <code>/hooks/post-commit</code> in your svn server directory:</p>
<pre class="brush: bash; title: ; notranslate">
#!/bin/sh

REPOS=&quot;$1&quot;
REV=&quot;$2&quot;

# COLOR=FFFFFF
AUTHOR=`svnlook author --revision $REV $REPOS`
TIME=`date +%s`
CUSTOMLOGFILE=/home/fusselwurm/svn-gource.log

svnlook changed --revision $REV $REPOS | while read line; do
        STATE_FILES=`echo $line | sed -E 's/\s+/|/' -`
        LOGLINE=&quot;$TIME|$AUTHOR|$STATE_FILES&quot; # |$COLOR&quot;
        echo &quot;$LOGLINE&quot; &gt;&gt; &quot;$CUSTOMLOGFILE&quot;
done;
</pre>
<p>Right. Now pipe the log file&#8217;s contents to gource:</p>
<pre class="brush: bash; title: ; notranslate">
tail -F /home/fusselwurm/svn-gource.log | \
  gource --log-format custom -200x200 -
</pre>
<p>Yay!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.fusselwurm.de/wp/2012/01/20/continuous-repository-checkin-visualization-with-gource/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>note to self: mysterious Apache &#8220;rewrite&#8221;</title>
		<link>http://www.fusselwurm.de/wp/2010/08/03/note-to-self-myterious-apache-rewrite/</link>
		<comments>http://www.fusselwurm.de/wp/2010/08/03/note-to-self-myterious-apache-rewrite/#comments</comments>
		<pubDate>Tue, 03 Aug 2010 09:36:02 +0000</pubDate>
		<dc:creator>Fusselwurm</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[apache]]></category>
		<category><![CDATA[configuration]]></category>

		<guid isPermaLink="false">http://www.fusselwurm.de/wp/?p=361</guid>
		<description><![CDATA[* directory with a file &#8220;config.php&#8221; * I add a rewrite rule config/something.php -> someotherfilephp * I try to access config/something.php * mysteriously, an empty file is returned (Status Code 200) * I look into the log, and realize config.php is accessed * Being absolutely clueless, I grab our sysadmin by the arm and shove [...]]]></description>
			<content:encoded><![CDATA[<p>* directory with a file &#8220;config.php&#8221;<br />
* I add a rewrite rule config/something.php -> someotherfilephp<br />
* I try to access config/something.php<br />
* mysteriously, an empty file is returned (Status Code 200)<br />
* I look into the log, and realize config.php is accessed<br />
* Being absolutely clueless, I grab our sysadmin by the arm and shove him to my place<br />
* after a long search through the apache config, he stumbles upon the MultiViews directive<br />
* set &#8220;-MultiViews&#8221;<br />
* everything works as expected<br />
* &#8230; bang head against table&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.fusselwurm.de/wp/2010/08/03/note-to-self-myterious-apache-rewrite/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>switch to Arch Linux</title>
		<link>http://www.fusselwurm.de/wp/2010/03/23/switch-to-arch-linux/</link>
		<comments>http://www.fusselwurm.de/wp/2010/03/23/switch-to-arch-linux/#comments</comments>
		<pubDate>Tue, 23 Mar 2010 07:54:35 +0000</pubDate>
		<dc:creator>Fusselwurm</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[arch]]></category>
		<category><![CDATA[bash]]></category>
		<category><![CDATA[configuration]]></category>
		<category><![CDATA[kde]]></category>

		<guid isPermaLink="false">http://www.fusselwurm.de/wp/?p=345</guid>
		<description><![CDATA[I installed Arch Linux some days ago. &#8211; I&#8217;ve been getting used to (K)Ubuntu&#8217;s everything-just-works magic recently, but having to do some things on my own is more refreshing than it is annoying. Here&#8217;s my personal list of things I had to do manually, not counting application package installs like firefox/chromium, amarok et al (to [...]]]></description>
			<content:encoded><![CDATA[<p>I installed Arch Linux some days ago. &#8211; I&#8217;ve been getting used to (K)Ubuntu&#8217;s everything-just-works magic recently, but having to do some things on my own is more refreshing than it is annoying.</p>
<p>Here&#8217;s my personal list of things I had to do manually, not counting application package installs like firefox/chromium, amarok et al (to be extended):</p>
<ul>
<li>create a new user and make home dir</li>
<li>install KDE and Xorg (the latter <em>not</em> being pulled automatically when installing KDE!)
<pre class="brush: bash; title: ; notranslate">
pacman -yS kde xorg
</pre>
<p>then, set the default runlevel to &#8220;boot to X&#8221; and set the X window manager to kdm in /etc/inittab
</li>
<li>make the scroll area of my touchpad work:
<pre class="brush: bash; title: ; notranslate">
pacman -S xf86-input-synaptics
cp /usr/share/hal/fdi/policy/10osvendor/11-x11-synaptics.fdi /etc/hal/fdi/policy/
</pre>
<p>and after that, editing /etc/hal/fdi/policy/11-x11-synaptics.fdi
</li>
<li>set the bash option to make &#8220;ls&#8221; display different things in different colors:
<pre class="brush: bash; title: ; notranslate">
echo &quot;alias ls='ls --color=auto' &quot; &gt;&gt; ~/.bashrc
</pre>
</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.fusselwurm.de/wp/2010/03/23/switch-to-arch-linux/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Freifunk, yay!</title>
		<link>http://www.fusselwurm.de/wp/2010/03/16/freifunk-yay/</link>
		<comments>http://www.fusselwurm.de/wp/2010/03/16/freifunk-yay/#comments</comments>
		<pubDate>Tue, 16 Mar 2010 20:54:25 +0000</pubDate>
		<dc:creator>Fusselwurm</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[configuration]]></category>
		<category><![CDATA[freifunk]]></category>
		<category><![CDATA[piratemood]]></category>
		<category><![CDATA[piraten]]></category>

		<guid isPermaLink="false">http://www.fusselwurm.de/wp/?p=336</guid>
		<description><![CDATA[Hab mir einen LinkSys WRT54GLv1.1 auf eBay geschossen, inkl Versand für 40€ Die neueste Freifunksoftware in der Piratenvariante gezogen Mir ein Konto bei meiner lokalen Freifunkcommunity zugelegt daselbst dann eine neue IP registriert Den LinkSys angeschmissen, mich über Kabel rangesteckt HTML-Seite auf der Gateway-IP (http://192.168.1.1/) aufgerufen, Benutzername leer, Kennwort &#8220;admin&#8221;, die Option zum Firmwareupdaten gefunden, [...]]]></description>
			<content:encoded><![CDATA[<ol>
<li>Hab mir einen <a href="http://en.wikipedia.org/wiki/Linksys_WRT54G_series">LinkSys WRT54GLv1.1</a> auf eBay geschossen, inkl Versand für 40€</li>
<li>Die neueste <a href="http://start.freifunk.net/">Freifunk</a>software in der <a href="https://dev.dd19.de/~alx/piraten/latest/brcm-2.4/openwrt-wrt54g-squashfs.bin">Piratenvariante</a> gezogen</li>
<li>Mir ein Konto bei meiner <a href="http://berlin.freifunk.net/">lokalen Freifunkcommunity</a> <a href="https://ip.berlin.freifunk.net/create_account.html">zugelegt</a></li>
<li>daselbst dann eine neue IP registriert</li>
<li>Den LinkSys angeschmissen, mich über Kabel rangesteckt</li>
<li>HTML-Seite auf der Gateway-IP (http://192.168.1.1/) aufgerufen, Benutzername leer, Kennwort &#8220;admin&#8221;, die Option zum Firmwareupdaten gefunden, zuvor gesaugte Software reingeworfen</li>
<li>Nachdem das Ding neugestartet ist, die schicke piratige Benutzeroberfläche gesehen, Paßwort geändert, Freifunk-IP etc eingetragen und überhaupt <a href="http://wiki.piratenpartei.de/BE:Squads/Piratenfreifunk/Mitmachen">diverse Optionen gesetzt</a></li>
<li>Die Kiste mit dem Uplink an einen der LAN-Ports meiner Fritzbox gehängt</li>
<li>&#8230; äh. fertig. wow.</li>
</ol>
<p>Jeder in meiner Nähe kann über WLAN (Ad-Hoc-Modus) sich verbinden, kriegt &#8216;ne IP, und beim ersten HTTP-Zugriff (Webseitenaufruf) kriegt er &#8216;ne Infoseite zurück mit &#8216;nem kleinem &#8220;allet klar ich benehm mich&#8221;-Button zum klik-ken :)</p>
<p>Danach get dat mit dem Internet und pingen is auch drin ;)</p>
]]></content:encoded>
			<wfw:commentRss>http://www.fusselwurm.de/wp/2010/03/16/freifunk-yay/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>note to self: mpd volume control doesnt work?</title>
		<link>http://www.fusselwurm.de/wp/2009/10/09/note-to-self-mpd-volume-control-doesnt-work/</link>
		<comments>http://www.fusselwurm.de/wp/2009/10/09/note-to-self-mpd-volume-control-doesnt-work/#comments</comments>
		<pubDate>Fri, 09 Oct 2009 19:29:47 +0000</pubDate>
		<dc:creator>Fusselwurm</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[configuration]]></category>
		<category><![CDATA[mpd]]></category>
		<category><![CDATA[music player]]></category>
		<category><![CDATA[ncmpc]]></category>

		<guid isPermaLink="false">http://www.fusselwurm.de/wp/?p=255</guid>
		<description><![CDATA[The ncmpc volume control does not work? Maybe something is missing in the mpd configuration&#8230; in my case, uncommenting mixer_type "alsa" mixer_device "default" mixer_control "PCM" in /etc/mpd.conf did the trick]]></description>
			<content:encoded><![CDATA[<p>The <a href="http://hem.bredband.net/kaw/ncmpc/">ncmpc</a> volume control does not work? Maybe something is missing in the <a href="http://en.wikipedia.org/wiki/Music_Player_Daemon">mpd</a> configuration&#8230; in my case, uncommenting<br />
<code><br />
mixer_type                      "alsa"<br />
mixer_device                    "default"<br />
mixer_control                   "PCM"<br />
</code><br />
in <code>/etc/mpd.conf</code> did the trick</p>
]]></content:encoded>
			<wfw:commentRss>http://www.fusselwurm.de/wp/2009/10/09/note-to-self-mpd-volume-control-doesnt-work/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>/tmp gelöscht, und danach tut KDE nicht mehr</title>
		<link>http://www.fusselwurm.de/wp/2009/01/25/tmp-geloscht-und-danach-tut-kde-nicht-mehr/</link>
		<comments>http://www.fusselwurm.de/wp/2009/01/25/tmp-geloscht-und-danach-tut-kde-nicht-mehr/#comments</comments>
		<pubDate>Sun, 25 Jan 2009 17:37:04 +0000</pubDate>
		<dc:creator>Fusselwurm</dc:creator>
				<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://www.fusselwurm.de/wp/?p=186</guid>
		<description><![CDATA[&#8230; jahaha. chmod 1777 /tmp]]></description>
			<content:encoded><![CDATA[<p>&#8230; jahaha.<br />
<code>chmod 1777 /tmp</code></p>
]]></content:encoded>
			<wfw:commentRss>http://www.fusselwurm.de/wp/2009/01/25/tmp-geloscht-und-danach-tut-kde-nicht-mehr/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Friß Staub, Vista.</title>
		<link>http://www.fusselwurm.de/wp/2007/05/31/fris-staub-vista/</link>
		<comments>http://www.fusselwurm.de/wp/2007/05/31/fris-staub-vista/#comments</comments>
		<pubDate>Thu, 31 May 2007 18:30:12 +0000</pubDate>
		<dc:creator>Fusselwurm</dc:creator>
				<category><![CDATA[gentoo]]></category>
		<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://www.fusselwurm.de/wp/2007/05/31/fris-staub-vista/</guid>
		<description><![CDATA[Desktop in 3D: linux-2.6.20, Xorg-7.2, Beryl 0.2.1, KDE 3.5.7. Installation und Konfiguration Beryl: alles in allem etwa eine Stunde (gentoo!)]]></description>
			<content:encoded><![CDATA[<p>Desktop in 3D: linux-2.6.20, Xorg-7.2, Beryl 0.2.1, KDE 3.5.7. Installation und Konfiguration Beryl: alles in allem etwa eine Stunde (gentoo!)<br />
<a href="http://www.fusselwurm.de/wp/wp-content/uploads/2007/05/desktop_screen_2.png"><img src='http://www.fusselwurm.de/wp/wp-content/uploads/2007/05/desktop_screen_2.thumbnail.png' title='3D-Effekte mit Beryl' alt='3D-Effekte mit Beryl' /></a><a href='http://www.fusselwurm.de/wp/wp-content/uploads/2007/06/desktop_screen_3.jpg' title='3D-Effekte mit Beryl'><img src='http://www.fusselwurm.de/wp/wp-content/uploads/2007/06/desktop_screen_3.thumbnail.jpg' alt='3D-Effekte mit Beryl' /></a><a href='http://www.fusselwurm.de/wp/wp-content/uploads/2007/06/desktop_screen_4.jpg' title='3D-Effekte mit Beryl'><img src='http://www.fusselwurm.de/wp/wp-content/uploads/2007/06/desktop_screen_4.thumbnail.jpg' alt='3D-Effekte mit Beryl' /></a><a href='http://www.fusselwurm.de/wp/wp-content/uploads/2007/06/desktop_screen_5.jpg' title='3D-Effekte mit Beryl'><img src='http://www.fusselwurm.de/wp/wp-content/uploads/2007/06/desktop_screen_5.thumbnail.jpg' alt='3D-Effekte mit Beryl' /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.fusselwurm.de/wp/2007/05/31/fris-staub-vista/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Trillian-Emoticons für Psi</title>
		<link>http://www.fusselwurm.de/wp/2007/04/07/trillian-emoticons-fur-psi/</link>
		<comments>http://www.fusselwurm.de/wp/2007/04/07/trillian-emoticons-fur-psi/#comments</comments>
		<pubDate>Sat, 07 Apr 2007 17:24:05 +0000</pubDate>
		<dc:creator>Fusselwurm</dc:creator>
				<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://www.fusselwurm.de/wp/2007/04/07/trillian-emoticons-fur-psi/</guid>
		<description><![CDATA[Einige Emoticons aus einem ich glaub noch von Trillian 0.74 geklauten Emoticonset, verpackt für Kopete und Psi. Beispielinstallation für Psi unter Linux, als root: wget http://www.fusselwurm.de/files/tp21emoticons.tar.gz tar -xzf tp21emoticons.tar.gz -C /usr/share/psi/iconsets/emoticons/ Bei fehlendem root-Zugriff oder zur Installation nur für sich selbst: nicht nach /usr/share/psi/, sondern nach ~/.psi/ entpacken. Für Kopete kommt das ganze (zumindest bei [...]]]></description>
			<content:encoded><![CDATA[<p>Einige <a href="http://de.wikipedia.org/wiki/Emoticon">Emoticons</a> aus einem ich glaub noch von <a href="http://www.trillian.cc/">Trillian</a> 0.74 geklauten Emoticonset, <a href='http://www.fusselwurm.de/files/tp21emoticons.tar.gz' title='TP21emoticons'>verpackt für Kopete und Psi</a>.</p>
<p>Beispielinstallation für <a href="http://psi-im.org/">Psi</a> unter Linux, als <a href="http://de.wikipedia.org/wiki/Root_Account">root</a>:<br />
<code><br />
wget http://www.fusselwurm.de/files/tp21emoticons.tar.gz<br />
tar -xzf tp21emoticons.tar.gz -C /usr/share/psi/iconsets/emoticons/<br />
</code><br />
Bei fehlendem root-Zugriff oder zur Installation nur für sich selbst: nicht nach <code>/usr/share/psi/</code>, sondern nach <code>~/.psi/ </code> entpacken.</p>
<p>Für <a href="http://kopete.kde.org/">Kopete</a> kommt das ganze (zumindest bei <a href="http://www.gentoo.org/">Gentoo Linux</a>) beispielsweise nach <code>/usr/kde/3.5/share/emoticons/</code>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.fusselwurm.de/wp/2007/04/07/trillian-emoticons-fur-psi/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
	</channel>
</rss>

