<?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>vanutsteen.nl =&#62; nerds only &#187; Linux</title>
	<atom:link href="http://www.vanutsteen.nl/category/linux/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.vanutsteen.nl</link>
	<description>A blog on rails, php, computing, my bass guitar and stuff</description>
	<lastBuildDate>Sat, 04 Feb 2012 18:07:30 +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>Nginx + sabnzbd + sickbeard + couchpotato + spotweb on my pandaboard</title>
		<link>http://www.vanutsteen.nl/2012/02/04/nginx-sabnzbd-sickbeard-couchpotato-spotweb-on-my-pandaboard/</link>
		<comments>http://www.vanutsteen.nl/2012/02/04/nginx-sabnzbd-sickbeard-couchpotato-spotweb-on-my-pandaboard/#comments</comments>
		<pubDate>Sat, 04 Feb 2012 18:02:30 +0000</pubDate>
		<dc:creator>LeonB</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[apache]]></category>
		<category><![CDATA[arm]]></category>
		<category><![CDATA[couchpotato]]></category>
		<category><![CDATA[nginx]]></category>
		<category><![CDATA[pandaboard]]></category>
		<category><![CDATA[sabnzbd]]></category>
		<category><![CDATA[sickbeard]]></category>
		<category><![CDATA[spotweb]]></category>

		<guid isPermaLink="false">http://www.vanutsteen.nl/?p=605</guid>
		<description><![CDATA[I got Apache- (mpm-itk), sickbeard, sabnzbd, couchpotato and spotweb running on my pandaboard. But apache really used up a lot of resources. So I decided to replace it with nginx. Nginx would be a reverse proxy and communicate via fastcgi with php. This post describes how to set up Nginx. Not how to install sabnzbd, [...]]]></description>
			<content:encoded><![CDATA[<p>I got Apache- (mpm-itk), sickbeard, sabnzbd, couchpotato and spotweb running on my pandaboard. But apache really used up a lot of resources. So I decided to replace it with nginx. Nginx would be a reverse proxy and communicate via fastcgi with php.</p>
<p>This post describes how to set up <strong>Nginx</strong>. Not how to install sabnzbd, sickbeard, couchpotato or spotweb on your machine. I assume you know how to do that.</p>
<h3>Step 1: install nginx</h3>
<div class="igBar"><span id="lcode-8"><a href="#" onclick="javascript:showPlainTxt('code-8'); return false;">PLAIN TEXT</a></span></div>
<div class="syntax_hilite"><span class="langName">CODE:</span>
<div id="code-8">
<div class="code">
<ol>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">leon@panda:~$ sudo apt-get install nginx-light </div>
</li>
</ol>
</div>
</div>
</div>
<p></p>
<h3>Step 2: proxy stuff</h3>
<p>Add all the important proxy stuff in one file so it can be included later on.</p>
<p>leon@panda:~$ cat /etc/nginx/conf.d/proxy.conf</p>
<div class="igBar"><span id="lcode-9"><a href="#" onclick="javascript:showPlainTxt('code-9'); return false;">PLAIN TEXT</a></span></div>
<div class="syntax_hilite"><span class="langName">CODE:</span>
<div id="code-9">
<div class="code">
<ol>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">proxy_redirect off;</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">proxy_set_header Host $host;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">proxy_set_header X-Real-IP $remote_addr;</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">client_max_body_size 10m;</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">client_body_buffer_size 128k;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">proxy_connect_timeout <span style="color:#800000;color:#800000;">90</span>;</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">proxy_send_timeout <span style="color:#800000;color:#800000;">90</span>;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">proxy_read_timeout <span style="color:#800000;color:#800000;">90</span>;</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">proxy_buffers <span style="color:#800000;color:#800000;">32</span> 4k;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp;</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">allow <span style="color:#800000;color:#800000;">192</span>.<span style="color:#800000;color:#800000;">168</span>.<span style="color:#800000;color:#800000;">1</span>.<span style="color:#800000;color:#800000;">0</span>/<span style="color:#800000;color:#800000;">24</span>;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">deny all; </div>
</li>
</ol>
</div>
</div>
</div>
<p></p>
<h3>Step 3: set up all the locations</h3>
<p>Set up alle the locations (subdirectories on you http server) for sabnzbdplus, sickbeard, couchpotato and spotweb.</p>
<p>The important part from /etc/nginx/sites-enabled/default:</p>
<div class="igBar"><span id="lcode-10"><a href="#" onclick="javascript:showPlainTxt('code-10'); return false;">PLAIN TEXT</a></span></div>
<div class="syntax_hilite"><span class="langName">CODE:</span>
<div id="code-10">
<div class="code">
<ol>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">server <span style="color:#006600; font-weight:bold;">&#123;</span></div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">location /sabnzbd <span style="color:#006600; font-weight:bold;">&#123;</span></div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">include /etc/nginx/conf.<span style="">d</span>/proxy.<span style="">conf</span>;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp;</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">proxy_pass http:<span style="color:#FF9933; font-style:italic;">//localhost:9090;</span></div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color:#006600; font-weight:bold;">&#125;</span></div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">location /sickbeard <span style="color:#006600; font-weight:bold;">&#123;</span></div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">include /etc/nginx/conf.<span style="">d</span>/proxy.<span style="">conf</span>;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp;</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">proxy_pass http:<span style="color:#FF9933; font-style:italic;">//localhost:8081;</span></div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color:#006600; font-weight:bold;">&#125;</span></div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">location /couchpotato <span style="color:#006600; font-weight:bold;">&#123;</span></div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">include /etc/nginx/conf.<span style="">d</span>/proxy.<span style="">conf</span>;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp;</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">proxy_pass http:<span style="color:#FF9933; font-style:italic;">//localhost:5000/;</span></div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">rewrite ^/couchpotato/?$ /couchpotato/movie/ permanent;</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color:#006600; font-weight:bold;">&#125;</span></div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp;</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">location /spotweb <span style="color:#006600; font-weight:bold;">&#123;</span></div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">alias /home/leon/src/spotweb/spotweb.<span style="">git</span>; #not root directive</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">location ~* \.<span style="">php</span>$ <span style="color:#006600; font-weight:bold;">&#123;</span></div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">fastcgi_pass localhost:<span style="color:#800000;color:#800000;">9001</span>; #defined in /etc/php5/fpm/pool.<span style="">d</span>/leon.<span style="">conf</span></div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">include fastcgi_params;</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">fastcgi_index index.<span style="">php</span>;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color:#006600; font-weight:bold;">&#125;</span></div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color:#006600; font-weight:bold;">&#125;</span></div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp;</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color:#006600; font-weight:bold;">&#125;</span> </div>
</li>
</ol>
</div>
</div>
</div>
<p></p>
<blockquote><p>Sorry about the indentation... Anyone recomend a good code plugin for wordpress?</p></blockquote>
<h3>Step 4: setup php</h3>
<p>Now we're going to set up php for nginx with php5-fpm. This is a new module and isn't available on older versions of ubuntu. I think it's only available from ubuntu 10.10 and onwards.</p>
<div class="igBar"><span id="lcode-11"><a href="#" onclick="javascript:showPlainTxt('code-11'); return false;">PLAIN TEXT</a></span></div>
<div class="syntax_hilite"><span class="langName">CODE:</span>
<div id="code-11">
<div class="code">
<ol>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">leon@panda:~$ sudo apt-get install php5-fpm </div>
</li>
</ol>
</div>
</div>
</div>
<p></p>
<p>Then edit /etc/php5/fpm/pool.d/leon.conf (in my case). I created another pool for my user ('leon') because I don't want it to run under the user www-data or similar.</p>
<p>cat /etc/php5/fpm/pool.d/leon.conf</p>
<div class="igBar"><span id="lcode-12"><a href="#" onclick="javascript:showPlainTxt('code-12'); return false;">PLAIN TEXT</a></span></div>
<div class="syntax_hilite"><span class="langName">CODE:</span>
<div id="code-12">
<div class="code">
<ol>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">; Start a new pool named <span style="color:#CC0000;">'leon'</span>.</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color:#006600; font-weight:bold;">&#91;</span>leon<span style="color:#006600; font-weight:bold;">&#93;</span></div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">listen = <span style="color:#800000;color:#800000;">127</span>.<span style="color:#800000;color:#800000;">0</span>.<span style="color:#800000;color:#800000;">0</span>.<span style="color:#800000;color:#800000;">1</span>:<span style="color:#800000;color:#800000;">9001</span></div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">user = leon</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">group = leon</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">pm = dynamic</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">pm.<span style="">start_servers</span> = <span style="color:#800000;color:#800000;">1</span></div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">pm.<span style="">min_spare_servers</span> = <span style="color:#800000;color:#800000;">1</span></div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">pm.<span style="">max_spare_servers</span> = <span style="color:#800000;color:#800000;">4</span></div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">pm.<span style="">max_children</span> = <span style="color:#800000;color:#800000;">4</span> </div>
</li>
</ol>
</div>
</div>
</div>
<p></p>
<h3>Step 5: Restart everything and admire your work</h3>
<div class="igBar"><span id="lcode-13"><a href="#" onclick="javascript:showPlainTxt('code-13'); return false;">PLAIN TEXT</a></span></div>
<div class="syntax_hilite"><span class="langName">CODE:</span>
<div id="code-13">
<div class="code">
<ol>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">leon@panda:~$ sudo service nginx restart</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">leon@panda:~$ sudo service php5-fmp restart </div>
</li>
</ol>
</div>
</div>
</div>
<p></p>
<p>Footnotes:<br />
I also tried to get it working with chroot = /home/leon in /etc/php5/fpm/pool.d/leon.conf but I couldn't get spotweb working with mysql on port 3306. When chrooted you can't access /var/run/mysqld/mysqld.sock. I'll have to investigate that a bit more.</p>
<p>Also, you could remove /etc/php5/fpm/pool.d/www.conf if you don't use it (like in my case):</p>
<div class="igBar"><span id="lcode-14"><a href="#" onclick="javascript:showPlainTxt('code-14'); return false;">PLAIN TEXT</a></span></div>
<div class="syntax_hilite"><span class="langName">CODE:</span>
<div id="code-14">
<div class="code">
<ol>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">cd /etc/php5/fpm/pool.<span style="">d</span>/</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">sudo mv www.<span style="">conf</span> www.<span style="">conf</span>.<span style="">disabled</span></div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">sudo service php5-fpm restart </div>
</li>
</ol>
</div>
</div>
</div>
<p></p>
]]></content:encoded>
			<wfw:commentRss>http://www.vanutsteen.nl/2012/02/04/nginx-sabnzbd-sickbeard-couchpotato-spotweb-on-my-pandaboard/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Access a pandboard with a &#8216;screen&#8217; serial console</title>
		<link>http://www.vanutsteen.nl/2012/01/30/access-a-pandboard-with-a-screen-serial-console/</link>
		<comments>http://www.vanutsteen.nl/2012/01/30/access-a-pandboard-with-a-screen-serial-console/#comments</comments>
		<pubDate>Mon, 30 Jan 2012 22:56:58 +0000</pubDate>
		<dc:creator>LeonB</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[pandaboard]]></category>
		<category><![CDATA[screen]]></category>
		<category><![CDATA[serial]]></category>
		<category><![CDATA[usb]]></category>

		<guid isPermaLink="false">http://www.vanutsteen.nl/?p=600</guid>
		<description><![CDATA[Easy as: PLAIN TEXT CODE: /usr/bin/screen /dev/ttyUSB0 115200]]></description>
			<content:encoded><![CDATA[<p>Easy as:</p>
<div class="igBar"><span id="lcode-16"><a href="#" onclick="javascript:showPlainTxt('code-16'); return false;">PLAIN TEXT</a></span></div>
<div class="syntax_hilite"><span class="langName">CODE:</span>
<div id="code-16">
<div class="code">
<ol>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">/usr/bin/screen /dev/ttyUSB0 <span style="color:#800000;color:#800000;">115200</span> </div>
</li>
</ol>
</div>
</div>
</div>
<p></p>
]]></content:encoded>
			<wfw:commentRss>http://www.vanutsteen.nl/2012/01/30/access-a-pandboard-with-a-screen-serial-console/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ubuntu 11.10 on my laptop and ufw</title>
		<link>http://www.vanutsteen.nl/2011/12/24/ubuntu-11-10-on-my-laptop-and-ufw/</link>
		<comments>http://www.vanutsteen.nl/2011/12/24/ubuntu-11-10-on-my-laptop-and-ufw/#comments</comments>
		<pubDate>Fri, 23 Dec 2011 23:44:31 +0000</pubDate>
		<dc:creator>LeonB</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[firewall]]></category>
		<category><![CDATA[security]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[ufw]]></category>

		<guid isPermaLink="false">http://www.vanutsteen.nl/?p=589</guid>
		<description><![CDATA[I decided on enabling ufw (uncomplicated firewall) on my laptop (you can't be secure enough). Too bad it isn't enabled by default on Ubuntu. So I had to do this: PLAIN TEXT CODE: sudo ufw enable sudo ufw default deny sudo ufw deny "Dovecot POP3" sudo ufw deny "Dovecot IMAP" sudo ufw deny "Dovecot Secure [...]]]></description>
			<content:encoded><![CDATA[<p>I decided on enabling ufw (uncomplicated firewall) on my laptop (you can't be secure enough). Too bad it isn't enabled by default on Ubuntu. So I had to do this:</p>
<div class="igBar"><span id="lcode-18"><a href="#" onclick="javascript:showPlainTxt('code-18'); return false;">PLAIN TEXT</a></span></div>
<div class="syntax_hilite"><span class="langName">CODE:</span>
<div id="code-18">
<div class="code">
<ol>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">sudo ufw enable</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">sudo ufw default deny</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">sudo ufw deny <span style="color:#CC0000;">"Dovecot POP3"</span></div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">sudo ufw deny <span style="color:#CC0000;">"Dovecot IMAP"</span></div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">sudo ufw deny <span style="color:#CC0000;">"Dovecot Secure IMAP"</span></div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">sudo ufw deny <span style="color:#CC0000;">"Dovecot Secure POP3"</span></div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">sudo ufw status verbose </div>
</li>
</ol>
</div>
</div>
</div>
<p></p>
]]></content:encoded>
			<wfw:commentRss>http://www.vanutsteen.nl/2011/12/24/ubuntu-11-10-on-my-laptop-and-ufw/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Listing contents of a tar.gz and extracting one specific directory</title>
		<link>http://www.vanutsteen.nl/2011/12/09/listing-contents-of-a-tar-gz-and-extracting-one-specific-directory/</link>
		<comments>http://www.vanutsteen.nl/2011/12/09/listing-contents-of-a-tar-gz-and-extracting-one-specific-directory/#comments</comments>
		<pubDate>Thu, 08 Dec 2011 23:04:03 +0000</pubDate>
		<dc:creator>LeonB</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[gzip]]></category>
		<category><![CDATA[tar]]></category>
		<category><![CDATA[tar.gz]]></category>

		<guid isPermaLink="false">http://www.vanutsteen.nl/?p=587</guid>
		<description><![CDATA[PLAIN TEXT CODE: # tar -ztvf babyhuiscasita.nl.tar.gz &#124;grep sql # tar -xzvf babyhuiscasita.nl.tar.gz ./.backup/babyhuiscasita.nl_mysql -t = list -x = extract]]></description>
			<content:encoded><![CDATA[<div class="igBar"><span id="lcode-20"><a href="#" onclick="javascript:showPlainTxt('code-20'); return false;">PLAIN TEXT</a></span></div>
<div class="syntax_hilite"><span class="langName">CODE:</span>
<div id="code-20">
<div class="code">
<ol>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"># tar -ztvf babyhuiscasita.<span style="">nl</span>.<span style="">tar</span>.<span style="">gz</span> |grep sql</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"># tar -xzvf babyhuiscasita.<span style="">nl</span>.<span style="">tar</span>.<span style="">gz</span> ./.<span style="">backup</span>/babyhuiscasita.<span style="">nl_mysql</span> </div>
</li>
</ol>
</div>
</div>
</div>
<p>
-t = list<br />
-x = extract</p>
]]></content:encoded>
			<wfw:commentRss>http://www.vanutsteen.nl/2011/12/09/listing-contents-of-a-tar-gz-and-extracting-one-specific-directory/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Asus k53sv &amp; ubuntu power management</title>
		<link>http://www.vanutsteen.nl/2011/11/23/asus-k53sv-ubuntu-power-management/</link>
		<comments>http://www.vanutsteen.nl/2011/11/23/asus-k53sv-ubuntu-power-management/#comments</comments>
		<pubDate>Wed, 23 Nov 2011 22:48:32 +0000</pubDate>
		<dc:creator>LeonB</dc:creator>
				<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://www.vanutsteen.nl/?p=580</guid>
		<description><![CDATA[Using my new Asus k53sv with Ubuntu 11.10 resulted in 2 hours of battery time. I know the k53 doesn't have a fancy battery (quite the opposite) but I thought 2 hours was really bad. With the power regression bug of the Linux kernel in my mind, I started searching. A lot of posts suggested [...]]]></description>
			<content:encoded><![CDATA[<p>Using my new Asus k53sv with Ubuntu 11.10 resulted in 2 hours of battery time. I know the k53 doesn't have a fancy battery (quite the opposite) but I thought 2 hours was really bad.</p>
<p>With the power regression bug of the Linux kernel in my mind, I started searching. A lot of posts suggested using "pcie_aspm=force". I tried that by editing the grub menu, but that didn't really help (at all). dmesg kept complaining about the bios not letting it so that was a dead end.</p>
<p>Phoronix suggested enabling some power options for the i915 chipset (onboard videocard).</p>
<p>So I changed the following in /etc/default/grub:</p>
<div class="igBar"><span id="lcode-23"><a href="#" onclick="javascript:showPlainTxt('code-23'); return false;">PLAIN TEXT</a></span></div>
<div class="syntax_hilite"><span class="langName">CODE:</span>
<div id="code-23">
<div class="code">
<ol>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">GRUB_CMDLINE_LINUX_DEFAULT=<span style="color:#CC0000;">"quiet splash"</span> </div>
</li>
</ol>
</div>
</div>
</div>
<p></p>
<p>to:</p>
<div class="igBar"><span id="lcode-24"><a href="#" onclick="javascript:showPlainTxt('code-24'); return false;">PLAIN TEXT</a></span></div>
<div class="syntax_hilite"><span class="langName">CODE:</span>
<div id="code-24">
<div class="code">
<ol>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">GRUB_CMDLINE_LINUX_DEFAULT=<span style="color:#CC0000;">"quiet splash pcie_aspm=force i915.i915_enable_rc6=1 i915.i915_enable_fbc=1 i915.lvds_downclock=1"</span> </div>
</li>
</ol>
</div>
</div>
</div>
<p></p>
<p>After a reboot the remaining battery time had changed from 2 hours to a little less than 3 hours. That's an improvement of almost 50%!</p>
<p>The only downside was that after a suspend (to memory) the screen gets garbled. But after a ctrl+F1 and ctrl+F8 that's fixed. So I'm actually quite happy know. Thanks Phoronix!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.vanutsteen.nl/2011/11/23/asus-k53sv-ubuntu-power-management/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>3 useful route commands</title>
		<link>http://www.vanutsteen.nl/2011/11/09/2-useful-route-commands/</link>
		<comments>http://www.vanutsteen.nl/2011/11/09/2-useful-route-commands/#comments</comments>
		<pubDate>Wed, 09 Nov 2011 12:24:43 +0000</pubDate>
		<dc:creator>LeonB</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[vpn route]]></category>
		<category><![CDATA[vpns]]></category>

		<guid isPermaLink="false">http://www.vanutsteen.nl/?p=571</guid>
		<description><![CDATA[To route an ip address through a (vpn) connection: PLAIN TEXT CODE: sudo route add -net XX.192.85.XX netmask 255.255.255.255 gw 192.168.1.1 sudo route add -net 10.76.122.0 netmask 255.255.255.0 gw 192.168.1.1 route -n]]></description>
			<content:encoded><![CDATA[<p>To route an ip address through a (vpn) connection:</p>
<div class="igBar"><span id="lcode-26"><a href="#" onclick="javascript:showPlainTxt('code-26'); return false;">PLAIN TEXT</a></span></div>
<div class="syntax_hilite"><span class="langName">CODE:</span>
<div id="code-26">
<div class="code">
<ol>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">sudo route add -net XX.<span style="color:#800000;color:#800000;">192</span>.<span style="color:#800000;color:#800000;">85</span>.<span style="">XX</span> netmask <span style="color:#800000;color:#800000;">255</span>.<span style="color:#800000;color:#800000;">255</span>.<span style="color:#800000;color:#800000;">255</span>.<span style="color:#800000;color:#800000;">255</span> gw <span style="color:#800000;color:#800000;">192</span>.<span style="color:#800000;color:#800000;">168</span>.<span style="color:#800000;color:#800000;">1</span>.<span style="color:#800000;color:#800000;">1</span></div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">sudo route add -net <span style="color:#800000;color:#800000;">10</span>.<span style="color:#800000;color:#800000;">76</span>.<span style="color:#800000;color:#800000;">122</span>.<span style="color:#800000;color:#800000;">0</span> netmask <span style="color:#800000;color:#800000;">255</span>.<span style="color:#800000;color:#800000;">255</span>.<span style="color:#800000;color:#800000;">255</span>.<span style="color:#800000;color:#800000;">0</span> gw <span style="color:#800000;color:#800000;">192</span>.<span style="color:#800000;color:#800000;">168</span>.<span style="color:#800000;color:#800000;">1</span>.<span style="color:#800000;color:#800000;">1</span></div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">route -n </div>
</li>
</ol>
</div>
</div>
</div>
<p></p>
]]></content:encoded>
			<wfw:commentRss>http://www.vanutsteen.nl/2011/11/09/2-useful-route-commands/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Sublime Text 2</title>
		<link>http://www.vanutsteen.nl/2011/10/26/sublime-text-2/</link>
		<comments>http://www.vanutsteen.nl/2011/10/26/sublime-text-2/#comments</comments>
		<pubDate>Wed, 26 Oct 2011 21:36:30 +0000</pubDate>
		<dc:creator>LeonB</dc:creator>
				<category><![CDATA[development]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[python]]></category>
		<category><![CDATA[Ruby]]></category>
		<category><![CDATA[gvim]]></category>
		<category><![CDATA[ide]]></category>
		<category><![CDATA[vim]]></category>

		<guid isPermaLink="false">http://www.vanutsteen.nl/?p=562</guid>
		<description><![CDATA[I installed sublime text on my Ubuntu 11.10 box but I had some troubled loading external python modules: PLAIN TEXT CODE: loaded 937 snippets &#62;&#62;&#62; import distutils Traceback &#40;most recent call last&#41;: &#160; File "&#60;string&#62;", line 1, in &#60;module&#62; ImportError: No module named distutils This is how I solved it: Edited ~/.local/share/applications/sublime.desktop Especially this line: PLAIN [...]]]></description>
			<content:encoded><![CDATA[<p>I installed sublime text on my Ubuntu 11.10 box but I had some troubled loading external python modules:</p>
<div class="igBar"><span id="lcode-30"><a href="#" onclick="javascript:showPlainTxt('code-30'); return false;">PLAIN TEXT</a></span></div>
<div class="syntax_hilite"><span class="langName">CODE:</span>
<div id="code-30">
<div class="code">
<ol>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">loaded <span style="color:#800000;color:#800000;">937</span> snippets</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&gt;&gt;&gt; import distutils</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">Traceback <span style="color:#006600; font-weight:bold;">&#40;</span>most recent call last<span style="color:#006600; font-weight:bold;">&#41;</span>:</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; File <span style="color:#CC0000;">"&lt;string&gt;"</span>, line <span style="color:#800000;color:#800000;">1</span>, in &lt;module&gt;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">ImportError: No module named distutils </div>
</li>
</ol>
</div>
</div>
</div>
<p></p>
<p>This is how I solved it:</p>
<p>Edited ~/.local/share/applications/sublime.desktop<br />
Especially this line:</p>
<div class="igBar"><span id="lcode-31"><a href="#" onclick="javascript:showPlainTxt('code-31'); return false;">PLAIN TEXT</a></span></div>
<div class="syntax_hilite"><span class="langName">CODE:</span>
<div id="code-31">
<div class="code">
<ol>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">Exec=<span style="color:#CC0000;">"/home/leon/Software/bin/sublime"</span> %U </div>
</li>
</ol>
</div>
</div>
</div>
<p></p>
<p>/home/leon/Software/bin/sublime contains this:</p>
<div class="igBar"><span id="lcode-32"><a href="#" onclick="javascript:showPlainTxt('code-32'); return false;">PLAIN TEXT</a></span></div>
<div class="syntax_hilite"><span class="langName">CODE:</span>
<div id="code-32">
<div class="code">
<ol>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">#!/bin/bash</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">cd /usr/lib/python2.<span style="color:#800000;color:#800000;">7</span></div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">/home/leon/Software/SublimeText2/sublime_text </div>
</li>
</ol>
</div>
</div>
</div>
<p></p>
<p>Then I installed some excellent plugins:</p>
<ul>
<li><a href="http://wbond.net/sublime_packages/package_control">http://wbond.net/sublime_packages/package_control</a></li>
<li><a href="https://github.com/Kronuz/SublimeCodeIntel">https://github.com/Kronuz/SublimeCodeIntel</a></li>
<li><a href="https://github.com/JulianEberius/SublimeRope">https://github.com/JulianEberius/SublimeRope</a></li>
<li><a href="https://bitbucket.org/sublimator/sublime-2-zencoding">https://bitbucket.org/sublimator/sublime-2-zencoding</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.vanutsteen.nl/2011/10/26/sublime-text-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Chaning the glippy indicator icon</title>
		<link>http://www.vanutsteen.nl/2011/10/24/chaning-the-glippy-indicator-icon/</link>
		<comments>http://www.vanutsteen.nl/2011/10/24/chaning-the-glippy-indicator-icon/#comments</comments>
		<pubDate>Mon, 24 Oct 2011 21:25:26 +0000</pubDate>
		<dc:creator>LeonB</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[clipboard manager]]></category>
		<category><![CDATA[glippy]]></category>

		<guid isPermaLink="false">http://www.vanutsteen.nl/?p=559</guid>
		<description><![CDATA[Copy the mono paste icon over to ~/.icons/Humanity/actions/22/edit-paste.svg &#160;]]></description>
			<content:encoded><![CDATA[<p>Copy the <a title="Mono paste icon" href="http://gnome-look.org/content/show.php/Ubuntu+Lucid+Parcellite+icon?content=123418" target="_blank">mono paste icon</a> over to ~/.icons/Humanity/actions/22/edit-paste.svg</p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.vanutsteen.nl/2011/10/24/chaning-the-glippy-indicator-icon/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Using rsync with spaces</title>
		<link>http://www.vanutsteen.nl/2011/09/14/using-rsync-with-spaces/</link>
		<comments>http://www.vanutsteen.nl/2011/09/14/using-rsync-with-spaces/#comments</comments>
		<pubDate>Tue, 13 Sep 2011 22:51:16 +0000</pubDate>
		<dc:creator>LeonB</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[quotes]]></category>
		<category><![CDATA[rsync]]></category>

		<guid isPermaLink="false">http://www.vanutsteen.nl/?p=539</guid>
		<description><![CDATA[Something to never forget again: PLAIN TEXT CODE: rsync --recursive me@remote:'&#34;~/Very complicated path/&#34;' ~/Downloads/ So: single quote, double quote, path, double quote, single quote]]></description>
			<content:encoded><![CDATA[<p>Something to never forget again:</p>
<div class="igBar"><span id="lcode-34"><a href="#" onclick="javascript:showPlainTxt('code-34'); return false;">PLAIN TEXT</a></span></div>
<div class="syntax_hilite"><span class="langName">CODE:</span>
<div id="code-34">
<div class="code">
<ol>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">rsync --recursive me@remote:<span style="color:#CC0000;">'&quot;~/Very complicated path/&quot;'</span> ~/Downloads/ </div>
</li>
</ol>
</div>
</div>
</div>
<p></p>
<p>So: single quote, double quote, path, double quote, single quote</p>
]]></content:encoded>
			<wfw:commentRss>http://www.vanutsteen.nl/2011/09/14/using-rsync-with-spaces/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The continuing story of Zend Studio 5.5.1</title>
		<link>http://www.vanutsteen.nl/2011/09/06/the-continuing-story-of-zend-studio-5-5-1/</link>
		<comments>http://www.vanutsteen.nl/2011/09/06/the-continuing-story-of-zend-studio-5-5-1/#comments</comments>
		<pubDate>Tue, 06 Sep 2011 21:44:18 +0000</pubDate>
		<dc:creator>LeonB</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[ide]]></category>
		<category><![CDATA[zend studio]]></category>

		<guid isPermaLink="false">http://www.vanutsteen.nl/?p=550</guid>
		<description><![CDATA[Everytime I install a new version of Ubuntu / Linux I'm hoping Zend Studio (the old/good one) will still be working. So I installed Ubuntu 11.10 and also this time I had to install some stuff to get Zend Studio working. PLAIN TEXT CODE: sudo apt-get install libc6-i386 ia32-libs ln -s /lib32/libc.so.6 /lib/libc.so.6 And it worked! [...]]]></description>
			<content:encoded><![CDATA[<p>Everytime I install a new version of Ubuntu / Linux I'm hoping <a title="Like it!" href="https://www.facebook.com/pages/Zend-Studio-55-is-much-better-than-Zend-Studio-for-Eclipse/188533861180610?sk=info" target="_blank">Zend Studio</a> (the old/good one) will still be working. So I installed Ubuntu 11.10 and also this time I had to install some stuff to get Zend Studio working.</p>
<div class="igBar"><span id="lcode-36"><a href="#" onclick="javascript:showPlainTxt('code-36'); return false;">PLAIN TEXT</a></span></div>
<div class="syntax_hilite"><span class="langName">CODE:</span>
<div id="code-36">
<div class="code">
<ol>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">sudo apt-get install libc6-i386 ia32-libs</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">ln -s /lib32/libc.<span style="">so</span>.<span style="color:#800000;color:#800000;">6</span> /lib/libc.<span style="">so</span>.<span style="color:#800000;color:#800000;">6</span> </div>
</li>
</ol>
</div>
</div>
</div>
<p></p>
<p>And it worked! Know I'm gonna try do update the JRE of the Zend Studio 5.5</p>
]]></content:encoded>
			<wfw:commentRss>http://www.vanutsteen.nl/2011/09/06/the-continuing-story-of-zend-studio-5-5-1/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ClipIt clipboard manager trayicon under Ubuntu 11.10</title>
		<link>http://www.vanutsteen.nl/2011/09/06/clipit-clipboard-manager-trayicon-under-ubuntu-11-10/</link>
		<comments>http://www.vanutsteen.nl/2011/09/06/clipit-clipboard-manager-trayicon-under-ubuntu-11-10/#comments</comments>
		<pubDate>Tue, 06 Sep 2011 21:19:45 +0000</pubDate>
		<dc:creator>LeonB</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[clipboard manager]]></category>
		<category><![CDATA[gnome]]></category>
		<category><![CDATA[icon]]></category>

		<guid isPermaLink="false">http://www.vanutsteen.nl/?p=534</guid>
		<description><![CDATA[In ubuntu 11.04 I had an icon at ~/.icons/Humanity/status/22/gtk-paste.svg so I would get a nice systray icon for ClipIt. But ClipIt changed something so now I had to cp the gtk-paste.svg to: ~/.icons/hicolor/scalable/apps/clipit-trayicon.svg Then logout/login and I had a nice trayicon! Long live clipboard managers. I _really_ wouldn't want to miss them!]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.vanutsteen.nl/wp-content/uploads/2011/09/clipit.png"><img class="size-medium wp-image-540 alignnone" title="clipit" src="http://www.vanutsteen.nl/wp-content/uploads/2011/09/clipit-300x75.png" alt="" width="300" height="75" /></a></p>
<p>In ubuntu 11.04 I had an <a title="The best icon for a clipboard manager! (so far)" href="http://ramzea.deviantart.com/art/Ubuntu-Mono-Parcellite-Icon-161002817" target="_blank">icon</a> at ~/.icons/Humanity/status/22/gtk-paste.svg so I would get a nice systray icon for <a title="ClipIt project page" href="http://clipit.rspwn.com/" target="_blank">ClipIt</a>. But ClipIt changed something so now I had to cp the gtk-paste.svg to:</p>
<p>~/.icons/hicolor/scalable/apps/clipit-trayicon.svg</p>
<p>Then logout/login and I had a nice <a title="The best icon for a gnome clipboard manager!" href="http://ramzea.deviantart.com/art/Ubuntu-Mono-Parcellite-Icon-161002817" target="_blank">trayicon</a>! Long live clipboard managers. I _really_ wouldn't want to miss them!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.vanutsteen.nl/2011/09/06/clipit-clipboard-manager-trayicon-under-ubuntu-11-10/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Install pcntl (pcntl_fork) on Ubuntu Hardy</title>
		<link>http://www.vanutsteen.nl/2011/08/18/install-pcntl-pcntl_fork-on-ubuntu-hardy/</link>
		<comments>http://www.vanutsteen.nl/2011/08/18/install-pcntl-pcntl_fork-on-ubuntu-hardy/#comments</comments>
		<pubDate>Thu, 18 Aug 2011 05:28:03 +0000</pubDate>
		<dc:creator>LeonB</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[fork]]></category>
		<category><![CDATA[pcntl]]></category>

		<guid isPermaLink="false">http://www.vanutsteen.nl/?p=531</guid>
		<description><![CDATA[No apt-getting on Hardy PLAIN TEXT CODE: cd ~/ mkdir php cd php apt-get source php5 cd php5-*/ext/pcntl phpize ./configure make no=`phpize &#124; grep "Zend Module Api No" &#124; cut -d : -f2 &#124; awk '{gsub(/^ +&#124; +$/,&#34;&#34;)}1'` cp modules/pcntl.so /usr/lib/php5/$no/ echo "extension=pcntl.so"&#62; /etc/php5/conf.d/pcntl.ini]]></description>
			<content:encoded><![CDATA[<p>No apt-getting on Hardy <img src='http://www.vanutsteen.nl/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' /> </p>
<div class="igBar"><span id="lcode-38"><a href="#" onclick="javascript:showPlainTxt('code-38'); return false;">PLAIN TEXT</a></span></div>
<div class="syntax_hilite"><span class="langName">CODE:</span>
<div id="code-38">
<div class="code">
<ol>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">cd ~/</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">mkdir php</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">cd php</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">apt-get source php5</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">cd php5-*/ext/pcntl</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">phpize</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">./configure</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">make</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">no=`phpize | grep <span style="color:#CC0000;">"Zend Module Api No"</span> | cut -d : -f2 | awk <span style="color:#CC0000;">'{gsub(/^ +| +$/,&quot;&quot;)}1'</span>`</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">cp modules/pcntl.<span style="">so</span> /usr/lib/php5/$no/</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">echo <span style="color:#CC0000;">"extension=pcntl.so"</span>&gt; /etc/php5/conf.<span style="">d</span>/pcntl.<span style="">ini</span> </div>
</li>
</ol>
</div>
</div>
</div>
<p></p>
]]></content:encoded>
			<wfw:commentRss>http://www.vanutsteen.nl/2011/08/18/install-pcntl-pcntl_fork-on-ubuntu-hardy/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Lsyncd</title>
		<link>http://www.vanutsteen.nl/2011/08/09/lsyncd/</link>
		<comments>http://www.vanutsteen.nl/2011/08/09/lsyncd/#comments</comments>
		<pubDate>Tue, 09 Aug 2011 21:50:19 +0000</pubDate>
		<dc:creator>LeonB</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[python]]></category>
		<category><![CDATA[freebsd]]></category>
		<category><![CDATA[lsyncd]]></category>
		<category><![CDATA[make]]></category>
		<category><![CDATA[rsync]]></category>
		<category><![CDATA[sftp]]></category>
		<category><![CDATA[spamassassin]]></category>
		<category><![CDATA[ssh]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://www.vanutsteen.nl/?p=525</guid>
		<description><![CDATA[I was messing around with some python script to test a spamassassin install. It checks al the mail in the spam folder an see if it is marked as spam. Then it goes through the mail in ham/ and see if it passes as not-spam. So I'm developing it on my local computer but I [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.vanutsteen.nl/wp-content/uploads/2011/08/rsync_config.png"><img class="alignright size-medium wp-image-526" title="FreeBSD rsync config" src="http://www.vanutsteen.nl/wp-content/uploads/2011/08/rsync_config-300x231.png" alt="FreeBSD rsync config" width="300" height="231" /></a>I was messing around with some python script to test a spamassassin install. It checks al the mail in the spam folder an see if it is marked as spam. Then it goes through the mail in ham/ and see if it passes as not-spam.</p>
<p>So I'm developing it on my local computer but I wanted to test it on a remote server. Well, actually not that remote because I can touch it from where I'm sitting but that's not the point <img src='http://www.vanutsteen.nl/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  The point was that I needed something to keep the remote version of the sourcecode in sync with the local source. Google to the rescue and I found <a title="Lsyncd homepage" href="http://code.google.com/p/lsyncd" target="_blank">lsyncd</a>.</p>
<p>A nice little tool to sync two directories with rsync. Too bad it didn't support transfers only via sftp because freebsd (the remote server) doesn't come with rsync installed. So I had to install that also <img src='http://www.vanutsteen.nl/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' />  Yeah, tough job....</p>
<div class="igBar"><span id="lcode-41"><a href="#" onclick="javascript:showPlainTxt('code-41'); return false;">PLAIN TEXT</a></span></div>
<div class="syntax_hilite"><span class="langName">CODE:</span>
<div id="code-41">
<div class="code">
<ol>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">cd /usr/ports/net/rsync</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">make config</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">make install </div>
</li>
</ol>
</div>
</div>
</div>
<p></p>
<p>Then on the local machine:</p>
<div class="igBar"><span id="lcode-42"><a href="#" onclick="javascript:showPlainTxt('code-42'); return false;">PLAIN TEXT</a></span></div>
<div class="syntax_hilite"><span class="langName">CODE:</span>
<div id="code-42">
<div class="code">
<ol>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">lsyncd --no-daemon --delay <span style="color:#800000;color:#800000;">1</span> ~/Workspaces/spamassassin-test/ beastie:~/spamassassin-test/ </div>
</li>
</ol>
</div>
</div>
</div>
<p></p>
<p>You have to specify the remote directory or else it will wipe you home folder as I discovered...</p>
<p>After this was done I could go on developing.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.vanutsteen.nl/2011/08/09/lsyncd/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>rsync retry (rrsync)</title>
		<link>http://www.vanutsteen.nl/2011/05/06/rsync-retry-rrsync/</link>
		<comments>http://www.vanutsteen.nl/2011/05/06/rsync-retry-rrsync/#comments</comments>
		<pubDate>Fri, 06 May 2011 06:16:35 +0000</pubDate>
		<dc:creator>LeonB</dc:creator>
				<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://www.vanutsteen.nl/?p=516</guid>
		<description><![CDATA[Met onze super-stabiele connectie op het kantoor wil rsync er nog wel eens uitklappen. Dus als je dan 's ochtends kijkt hoe ver 'ie is kom je er achter dat rsync gestopt is. Daarom een rrsync. Gebasseerd op deze link: http://blog.iangreenleaf.com/2009/03/rsync-and-retrying-until-we-get-it.html maar iets beter gemaakt zodat het rsync commando er niet hard in staat: (Misschien dat [...]]]></description>
			<content:encoded><![CDATA[<p>Met onze super-stabiele connectie op het kantoor wil rsync er nog wel eens uitklappen. Dus als je dan 's ochtends kijkt hoe ver 'ie is kom je er achter dat rsync gestopt is. Daarom een rrsync. Gebasseerd op deze link: <a href="http://blog.iangreenleaf.com/2009/03/rsync-and-retrying-until-we-get-it.html">http://blog.iangreenleaf.com/2009/03/rsync-and-retrying-until-we-get-it.html</a> maar iets beter gemaakt zodat het rsync commando er niet hard in staat:</p>
<p>(Misschien dat de indent niet helemaal goed is)</p>
<div class="igBar"><span id="lcode-44"><a href="#" onclick="javascript:showPlainTxt('code-44'); return false;">PLAIN TEXT</a></span></div>
<div class="syntax_hilite"><span class="langName">CODE:</span>
<div id="code-44">
<div class="code">
<ol>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">#!/bin/bash</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">### ABOUT</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">### Runs rsync, retrying on errors up to a maximum number of tries.</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">### Simply edit the rsync line in the script to whatever parameters you need.</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"># Trap interrupts and exit instead of continuing the loop</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">trap <span style="color:#CC0000;">"echo Exited!; exit;"</span> SIGINT SIGTERM</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp;</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">MAX_RETRIES=<span style="color:#800000;color:#800000;">50</span></div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">i=<span style="color:#800000;color:#800000;">0</span></div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"># Set the initial return value to failure</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">false</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">while <span style="color:#006600; font-weight:bold;">&#91;</span> $? -ne <span style="color:#800000;color:#800000;">0</span> -a $i -lt $MAX_RETRIES <span style="color:#006600; font-weight:bold;">&#93;</span></div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">do</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">i=$<span style="color:#006600; font-weight:bold;">&#40;</span><span style="color:#006600; font-weight:bold;">&#40;</span>$i+<span style="color:#800000;color:#800000;">1</span><span style="color:#006600; font-weight:bold;">&#41;</span><span style="color:#006600; font-weight:bold;">&#41;</span></div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">`which rsync` $*</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">done</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">if <span style="color:#006600; font-weight:bold;">&#91;</span> $i -eq $MAX_RETRIES <span style="color:#006600; font-weight:bold;">&#93;</span></div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">then</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">echo <span style="color:#CC0000;">"Hit maximum number of retries, giving up."</span></div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">fi </div>
</li>
</ol>
</div>
</div>
</div>
<p></p>
]]></content:encoded>
			<wfw:commentRss>http://www.vanutsteen.nl/2011/05/06/rsync-retry-rrsync/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Linux printer drivers for the Dell 1710n</title>
		<link>http://www.vanutsteen.nl/2011/04/18/linux-printer-drivers-for-the-dell-1710n/</link>
		<comments>http://www.vanutsteen.nl/2011/04/18/linux-printer-drivers-for-the-dell-1710n/#comments</comments>
		<pubDate>Mon, 18 Apr 2011 08:15:39 +0000</pubDate>
		<dc:creator>LeonB</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[cups]]></category>
		<category><![CDATA[dell]]></category>
		<category><![CDATA[drivers]]></category>
		<category><![CDATA[printer]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://www.vanutsteen.nl/?p=514</guid>
		<description><![CDATA[Voila: http://www.cups.org/ppd.php?L483+I80+T+Q]]></description>
			<content:encoded><![CDATA[<p>Voila: <a title="Linux drivers for the Dell 1710n" href="http://www.cups.org/ppd.php?L483+I80+T+Q" target="_blank">http://www.cups.org/ppd.php?L483+I80+T+Q</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.vanutsteen.nl/2011/04/18/linux-printer-drivers-for-the-dell-1710n/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Installing banshee + removing rhythmbox from the soundmenu</title>
		<link>http://www.vanutsteen.nl/2010/12/20/installing-banshee-removing-rhythmbox-from-the-soundmenu/</link>
		<comments>http://www.vanutsteen.nl/2010/12/20/installing-banshee-removing-rhythmbox-from-the-soundmenu/#comments</comments>
		<pubDate>Mon, 20 Dec 2010 10:49:48 +0000</pubDate>
		<dc:creator>LeonB</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[banshee]]></category>
		<category><![CDATA[rhythmbox]]></category>
		<category><![CDATA[soundmenu]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://www.vanutsteen.nl/?p=506</guid>
		<description><![CDATA[PLAIN TEXT CODE: sudo add-apt-repository ppa:banshee-team/banshee-unstable sudo aptitude install banshee rm ~/.cache/indicators/sound/familiar-players-db.keyfile And don't forget to enable the soundmenu plugin in banshee!]]></description>
			<content:encoded><![CDATA[<div class="igBar"><span id="lcode-46"><a href="#" onclick="javascript:showPlainTxt('code-46'); return false;">PLAIN TEXT</a></span></div>
<div class="syntax_hilite"><span class="langName">CODE:</span>
<div id="code-46">
<div class="code">
<ol>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">sudo add-apt-repository ppa:banshee-team/banshee-unstable</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">sudo aptitude install banshee</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">rm ~/.<span style="">cache</span>/indicators/sound/familiar-players-db.<span style="">keyfile</span> </div>
</li>
</ol>
</div>
</div>
</div>
<p></p>
<p>And don't forget to enable the soundmenu plugin in banshee!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.vanutsteen.nl/2010/12/20/installing-banshee-removing-rhythmbox-from-the-soundmenu/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Removing packages marked rc</title>
		<link>http://www.vanutsteen.nl/2010/10/18/removing-packages-marked-rc/</link>
		<comments>http://www.vanutsteen.nl/2010/10/18/removing-packages-marked-rc/#comments</comments>
		<pubDate>Mon, 18 Oct 2010 12:42:52 +0000</pubDate>
		<dc:creator>LeonB</dc:creator>
				<category><![CDATA[development]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[compiling]]></category>
		<category><![CDATA[evolution]]></category>
		<category><![CDATA[makefile]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://www.vanutsteen.nl/?p=493</guid>
		<description><![CDATA[I got an error when building the 2.32 version for ubuntu. Some packages once where installed but got removed. But they still had the status rc. So I purged them with the help of this blog. I compiled evolution with the help of a Makefile that I downloaded. I had to add the "maverick" distro [...]]]></description>
			<content:encoded><![CDATA[<p>I got an error when building the 2.32 version for ubuntu. Some packages once where installed but got removed. But they still had the status rc.</p>
<p>So I purged them with the help of <a href="http://joysofprogramming.com/remove-packages-marked-rc/">this blog</a>.</p>
<p>I compiled evolution with the help of <a href="http://mad-scientist.us/evolution.html">a Makefile that I downloaded</a>.</p>
<p>I had to add the "maverick" distro and install some additional packages such as:</p>
<ul>
<li>gobject-introspection</li>
<li>autopoint</li>
<li>libgdata-dev</li>
</ul>
<p>I removed the evolution-exchange plugin.</p>
<p>The master branch of gweather required gtk3 so I changed that to: gnome-2.30 (or something)<br />
I had to apply <a href="http://www.mail-archive.com/evolution-list@gnome.org/msg15575.html">a patch</a> to solve a build error.</p>
<p>Bottom of this post: http://www.mail-archive.com/evolution-hackers@gnome.org/msg03863.html</p>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow: hidden;">http://www.mail-archive.com/evolution-list@gnome.org/msg15575.html</div>
]]></content:encoded>
			<wfw:commentRss>http://www.vanutsteen.nl/2010/10/18/removing-packages-marked-rc/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Don&#8217;t wat to type any explanation</title>
		<link>http://www.vanutsteen.nl/2010/09/25/dont-wat-to-type-any-explanation/</link>
		<comments>http://www.vanutsteen.nl/2010/09/25/dont-wat-to-type-any-explanation/#comments</comments>
		<pubDate>Fri, 24 Sep 2010 22:36:36 +0000</pubDate>
		<dc:creator>LeonB</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[active directory]]></category>
		<category><![CDATA[ads]]></category>
		<category><![CDATA[samba]]></category>
		<category><![CDATA[smbd]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[winbind]]></category>

		<guid isPermaLink="false">http://www.vanutsteen.nl/?p=489</guid>
		<description><![CDATA[PLAIN TEXT CODE: &#91;global&#93; security = ads realm = LAB.EXAMPLE.COM password server = 10.0.0.1 # note that workgroup is the 'short' domain name workgroup = LAB #       winbind separator = + idmap uid = 10000-20000 idmap gid = 10000-20000 winbind enum users = yes winbind enum groups = yes template homedir = /home/%D/%U template shell [...]]]></description>
			<content:encoded><![CDATA[<div class="igBar"><span id="lcode-48"><a href="#" onclick="javascript:showPlainTxt('code-48'); return false;">PLAIN TEXT</a></span></div>
<div class="syntax_hilite"><span class="langName">CODE:</span>
<div id="code-48">
<div class="code">
<ol>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color:#006600; font-weight:bold;">&#91;</span>global<span style="color:#006600; font-weight:bold;">&#93;</span></div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">security = ads</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">realm = LAB.<span style="">EXAMPLE</span>.<span style="">COM</span></div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">password server = <span style="color:#800000;color:#800000;">10</span>.<span style="color:#800000;color:#800000;">0</span>.<span style="color:#800000;color:#800000;">0</span>.<span style="color:#800000;color:#800000;">1</span></div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"># note that workgroup is the <span style="color:#CC0000;">'short'</span> domain name</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">workgroup = LAB</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">#       winbind separator = +</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">idmap uid = <span style="color:#800000;color:#800000;">10000</span>-<span style="color:#800000;color:#800000;">20000</span></div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">idmap gid = <span style="color:#800000;color:#800000;">10000</span>-<span style="color:#800000;color:#800000;">20000</span></div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">winbind enum users = yes</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">winbind enum groups = yes</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">template homedir = /home/%D/%U</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">template shell = /bin/bash</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">client use spnego = yes</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">client ntlmv2 auth = yes</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">encrypt passwords = yes</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">winbind use default domain = yes</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">restrict anonymous = <span style="color:#800000;color:#800000;">2</span></div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp;</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">security = ads</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">realm = TIM-ONLINE.<span style="">NL</span></div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">password server = <span style="color:#800000;color:#800000;">10</span>.<span style="color:#800000;color:#800000;">76</span>.<span style="color:#800000;color:#800000;">122</span>.<span style="color:#800000;color:#800000;">21</span></div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">workgroup = TIM-ONLINE</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">idmap uid = <span style="color:#800000;color:#800000;">10000</span>-<span style="color:#800000;color:#800000;">20000</span></div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">idmap gid = <span style="color:#800000;color:#800000;">10000</span>-<span style="color:#800000;color:#800000;">20000</span></div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">winbind enum users = yes</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">winbind enum groups = yes</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">template homedir = /home/%D/%U</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">template shell = /bin/bash</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">client use spnego = yes</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">client ntlmv2 auth = yes</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">encrypt passwords = yes</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">winbind use default domain = yes</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">winbind use default domain = yes</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">winbind refresh tickets = yes</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">netbios name = concepts</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">netbiosname = concepts</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp;</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">#Vista compatibliyy</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">client schannel = Auto</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">server schannel = Auto</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp;</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">sudo /etc/init.<span style="">d</span>/winbind stop</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">sudo /etc/init.<span style="">d</span>/smbd restart</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">sudo /etc/init.<span style="">d</span>/winbind start</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp;</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">net ads join -U administrator</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp;</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">/etc/init.<span style="">d</span>/winbind restart</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp;</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">wbinfo -u</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">wbinfo -g</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">file: /etc/pam.<span style="">d</span>/common-session</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">session required pam_unix.<span style="">so</span></div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">session required pam_mkhomedir.<span style="">so</span> umask=<span style="color:#800000;color:#800000;">0022</span> skel=/etc/skel </div>
</li>
</ol>
</div>
</div>
</div>
<p></p>
]]></content:encoded>
			<wfw:commentRss>http://www.vanutsteen.nl/2010/09/25/dont-wat-to-type-any-explanation/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>installing non-free-codecs in Ubuntu &#8220;Lucid Lynx&#8221; 10.04</title>
		<link>http://www.vanutsteen.nl/2010/03/27/installing-non-free-codecs-in-ubuntu-lucid-lynx-10-04/</link>
		<comments>http://www.vanutsteen.nl/2010/03/27/installing-non-free-codecs-in-ubuntu-lucid-lynx-10-04/#comments</comments>
		<pubDate>Sat, 27 Mar 2010 21:47:32 +0000</pubDate>
		<dc:creator>LeonB</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[codecs]]></category>
		<category><![CDATA[medibuntu]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://www.vanutsteen.nl/?p=478</guid>
		<description><![CDATA[A very nice article about installing the non-free-codes (wmv, wma, et cetera) in 10.04!]]></description>
			<content:encoded><![CDATA[<p>A very nice article about <a title="installing non-free-codecs in 10.04" href="http://www.johannes-eva.net/index.php?page=2010-04-ubuntu-lucid-useful-guide#mediacodecsandmore">installing the non-free-codes (wmv, wma, et cetera) in 10.04</a>!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.vanutsteen.nl/2010/03/27/installing-non-free-codecs-in-ubuntu-lucid-lynx-10-04/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Using a MCE remote with an Antec Veris Fusion case</title>
		<link>http://www.vanutsteen.nl/2010/03/07/using-a-mce-remote-with-an-antec-veris-fusion-case/</link>
		<comments>http://www.vanutsteen.nl/2010/03/07/using-a-mce-remote-with-an-antec-veris-fusion-case/#comments</comments>
		<pubDate>Sun, 07 Mar 2010 21:33:29 +0000</pubDate>
		<dc:creator>LeonB</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[antec]]></category>
		<category><![CDATA[mce]]></category>
		<category><![CDATA[remote]]></category>

		<guid isPermaLink="false">http://www.vanutsteen.nl/?p=474</guid>
		<description><![CDATA[I got a MCE remote and wanted to use it with my Antecct Fusion case. It has a remote of it's own but it uses a stick for navigating and that really doesn't work. I found a great post about how to use the mce remote. I only had to modprobe the lirc_imon module with [...]]]></description>
			<content:encoded><![CDATA[<p>I got a MCE remote and wanted to use it with my Antecct Fusion case. It has a remote of it's own but it uses a stick for navigating and that really doesn't work.</p>
<p>I found a great post about <a title="How to use a mce remote with an antec veris fusion case" href="http://forum.xbmc.org/showthread.php?t=68722" target="_blank">how to use the mce remote</a>.</p>
<p>I only had to modprobe the lirc_imon module with some parameter (lirc_imon ir_protocol=1) and change the xbmc configuration. After that it worked perfectly!</p>
<p>Only my xbox 360 is right next to my media pc. So when I press a button my xbox 360 start <img src='http://www.vanutsteen.nl/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>I tried to disable the ir censor of my xbox but I couldn't find and option. So I covered it with some tape <img src='http://www.vanutsteen.nl/wp-includes/images/smilies/icon_razz.gif' alt=':P' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://www.vanutsteen.nl/2010/03/07/using-a-mce-remote-with-an-antec-veris-fusion-case/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Some additional info on &#8220;User account has expired&#8221; error</title>
		<link>http://www.vanutsteen.nl/2010/02/02/some-additional-info-on-user-account-has-expired-error/</link>
		<comments>http://www.vanutsteen.nl/2010/02/02/some-additional-info-on-user-account-has-expired-error/#comments</comments>
		<pubDate>Tue, 02 Feb 2010 06:59:31 +0000</pubDate>
		<dc:creator>LeonB</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[cron]]></category>
		<category><![CDATA[cronjob]]></category>
		<category><![CDATA[error]]></category>
		<category><![CDATA[root]]></category>

		<guid isPermaLink="false">http://www.vanutsteen.nl/?p=472</guid>
		<description><![CDATA[You have to also use "chage": PLAIN TEXT CODE: sudo passwd -l root sudo usermod -p ! root sudo chage -E-1 root So my previous post about this subject is now obsolete]]></description>
			<content:encoded><![CDATA[<p>You have to also use "chage":</p>
<div class="igBar"><span id="lcode-50"><a href="#" onclick="javascript:showPlainTxt('code-50'); return false;">PLAIN TEXT</a></span></div>
<div class="syntax_hilite"><span class="langName">CODE:</span>
<div id="code-50">
<div class="code">
<ol>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">sudo passwd -l root</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">sudo usermod -p ! root</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">sudo chage -E-<span style="color:#800000;color:#800000;">1</span> root </div>
</li>
</ol>
</div>
</div>
</div>
<p></p>
<p>So <a href="http://www.vanutsteen.nl/2009/11/12/root-crontabscronjobs-not-executing-or-running/">my previous post about this subject</a> is now obsolete <img src='http://www.vanutsteen.nl/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://www.vanutsteen.nl/2010/02/02/some-additional-info-on-user-account-has-expired-error/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>xbmc setup</title>
		<link>http://www.vanutsteen.nl/2009/12/02/xbmc-setup/</link>
		<comments>http://www.vanutsteen.nl/2009/12/02/xbmc-setup/#comments</comments>
		<pubDate>Wed, 02 Dec 2009 22:33:38 +0000</pubDate>
		<dc:creator>LeonB</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Other]]></category>

		<guid isPermaLink="false">http://www.vanutsteen.nl/?p=466</guid>
		<description><![CDATA[I've managed to get XBMC running (and good!). It took me a while to get everything to my liking. Almost everything works perfectly! Except sound is still a bit of a hassle. Linux (with pulseaudio) only sends analog sound through my s/pdif connection (aaarghh... forgot to draw in the schema -&#62;) and not digital. Maybe [...]]]></description>
			<content:encoded><![CDATA[<p><a title="Big picture of the htpc setup" href="http://www.vanutsteen.nl/wp-content/uploads/2009/12/htpc_setup.png"><img class="alignright size-medium wp-image-467" title="htpc_setup" src="http://www.vanutsteen.nl/wp-content/uploads/2009/12/htpc_setup-273x300.png" alt="htpc_setup" width="273" height="300" /></a>I've managed to get XBMC running (and good!). It took me a while to get everything to my liking. Almost everything works perfectly! Except sound is still a bit of a hassle. Linux (with pulseaudio) only sends analog sound through my s/pdif connection (aaarghh... forgot to draw in the schema -&gt;) and not digital.</p>
<p>Maybe I'll switch back to alsa. But then again: maybe not. It's only connected to an old Yamaha amplifier I had laying around so I don't think I'll hear the difference.</p>
<p>I have a draft blog post in which I explain how I got everything running on Ubuntu 9.10. I'll try and publish it as soon as I can <img src='http://www.vanutsteen.nl/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  And then I'll update the schema too.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.vanutsteen.nl/2009/12/02/xbmc-setup/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Installing firefox 3.6 for karmic</title>
		<link>http://www.vanutsteen.nl/2009/11/28/installing-firefox-3-6-for-karmic/</link>
		<comments>http://www.vanutsteen.nl/2009/11/28/installing-firefox-3-6-for-karmic/#comments</comments>
		<pubDate>Sat, 28 Nov 2009 18:22:50 +0000</pubDate>
		<dc:creator>LeonB</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[firefox]]></category>
		<category><![CDATA[ppa]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://www.vanutsteen.nl/?p=462</guid>
		<description><![CDATA[As easy as: PLAIN TEXT CODE: sudo add-apt-repository ppa:ubuntu-mozilla-daily sudo aptitude update sudo aptitude install firefox-3.6]]></description>
			<content:encoded><![CDATA[<p>As easy as:</p>
<div class="igBar"><span id="lcode-52"><a href="#" onclick="javascript:showPlainTxt('code-52'); return false;">PLAIN TEXT</a></span></div>
<div class="syntax_hilite"><span class="langName">CODE:</span>
<div id="code-52">
<div class="code">
<ol>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">sudo add-apt-repository ppa:ubuntu-mozilla-daily</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">sudo aptitude update</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">sudo aptitude install firefox-<span style="color:#800000;color:#800000;">3</span>.<span style="color:#800000;color:#800000;">6</span> </div>
</li>
</ol>
</div>
</div>
</div>
<p></p>
]]></content:encoded>
			<wfw:commentRss>http://www.vanutsteen.nl/2009/11/28/installing-firefox-3-6-for-karmic/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>XBMC&#8230;.</title>
		<link>http://www.vanutsteen.nl/2009/11/22/xbmc/</link>
		<comments>http://www.vanutsteen.nl/2009/11/22/xbmc/#comments</comments>
		<pubDate>Sun, 22 Nov 2009 22:15:37 +0000</pubDate>
		<dc:creator>LeonB</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[sucks]]></category>
		<category><![CDATA[xmbc]]></category>

		<guid isPermaLink="false">http://www.vanutsteen.nl/?p=447</guid>
		<description><![CDATA[In reply to my last article about media centers. Well, I installed xbmc this weekend and actually it kinda sucked. Installation was a breeze: kudos for that. But when I ran it, it hogged all of the cpu time of the second core. 100% constantly. I've got an Ati hd3200 integrated on the motherboard and [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignright size-full wp-image-454" title="xbmc_410" src="http://www.vanutsteen.nl/wp-content/plugins/com-resize/phpthumb/phpThumb.php?src=/wp-content/uploads/2009/11/xbmc_410.jpg&w=200" alt="xbmc_410" width="200" />In reply to <a href="http://www.vanutsteen.nl/2008/11/19/mythtv-vs-freevo-vs-xbmc-vs-mediaportal-vs-elisa/">my last article about media centers</a>.<br />
Well, I installed xbmc this weekend and actually it kinda sucked. Installation was a breeze: kudos for that. But when I ran it, it hogged all of the cpu time of the second core. 100% constantly.</p>
<p>I've got an Ati hd3200 integrated on the motherboard and in combination with XBMC I believe that's a bad choice. I've read numerous threads about people having the same problem as me <img src='http://www.vanutsteen.nl/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' />  I'm quite upset with this. I don't blame the XBMC developers, they do a fabulous job, but still it sucks.</p>
<p>I hope that in the next couple of weeks this problem is solved but I don't think it will. I'm now looking for an alternative but XBMC just <em>looks</em> so polished.... It's too bad it's not usable for me <img src='http://www.vanutsteen.nl/wp-includes/images/smilies/icon_cry.gif' alt=':cry:' class='wp-smiley' /> </p>
<p>I'm now downloading the live cd of XBMC and see if that works 'cause I dont know who to blame: me, ati, xbmc or ubuntu...</p>
]]></content:encoded>
			<wfw:commentRss>http://www.vanutsteen.nl/2009/11/22/xbmc/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Root crontabs/cronjobs not executing or running</title>
		<link>http://www.vanutsteen.nl/2009/11/12/root-crontabscronjobs-not-executing-or-running/</link>
		<comments>http://www.vanutsteen.nl/2009/11/12/root-crontabscronjobs-not-executing-or-running/#comments</comments>
		<pubDate>Thu, 12 Nov 2009 09:22:16 +0000</pubDate>
		<dc:creator>LeonB</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[cron]]></category>
		<category><![CDATA[root]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://www.vanutsteen.nl/?p=443</guid>
		<description><![CDATA[Well as the title says: the cronjobs of the root user didn't run on one of my servers (MY MACHINE!) and it took a while to figure out why they weren't running. It ended up to be something with locking the root account. These steps fixed the problem: PLAIN TEXT CODE: sudo passwd -l root [...]]]></description>
			<content:encoded><![CDATA[<p>Well as the title says: the cronjobs of the root user didn't run on one of my servers (MY MACHINE!) and it took a while to figure out why they weren't running. It ended up to be something with locking the root account. These steps fixed the problem:</p>
<div class="igBar"><span id="lcode-54"><a href="#" onclick="javascript:showPlainTxt('code-54'); return false;">PLAIN TEXT</a></span></div>
<div class="syntax_hilite"><span class="langName">CODE:</span>
<div id="code-54">
<div class="code">
<ol>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">sudo passwd -l root</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">sudo usermod -p ! root </div>
</li>
</ol>
</div>
</div>
</div>
<p></p>
]]></content:encoded>
			<wfw:commentRss>http://www.vanutsteen.nl/2009/11/12/root-crontabscronjobs-not-executing-or-running/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

