<?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>Kerneldump.org &#187; Linux</title>
	<atom:link href="http://blog.kerneldump.org/tag/linux/feed" rel="self" type="application/rss+xml" />
	<link>http://blog.kerneldump.org</link>
	<description>Uh oh... You've got into my life.</description>
	<lastBuildDate>Sun, 13 Dec 2009 22:54:42 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>RPM Specs argument handling</title>
		<link>http://blog.kerneldump.org/307/rpm-specs-argument-handling.dump</link>
		<comments>http://blog.kerneldump.org/307/rpm-specs-argument-handling.dump#comments</comments>
		<pubDate>Tue, 03 Nov 2009 15:39:34 +0000</pubDate>
		<dc:creator>Blokje</dc:creator>
				<category><![CDATA[blogpost]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[RPM]]></category>
		<category><![CDATA[scripting]]></category>

		<guid isPermaLink="false">http://blog.kerneldump.org/?p=307</guid>
		<description><![CDATA[When building RPM&#8217;s it is possible to use post and pre install/uninstall hooks. These get sometimes some parameters to determine if you are upgrading or uninstalling. This could be handy when creating users while installing. So it is crucial to know these and I always forget them install upgrade uninstall %pretrans $1 == 0 $1 [...]]]></description>
		<wfw:commentRss>http://blog.kerneldump.org/307/rpm-specs-argument-handling.dump/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Syslog-ng messages to bash script</title>
		<link>http://blog.kerneldump.org/286/syslog-ng-messages-to-bash-script.dump</link>
		<comments>http://blog.kerneldump.org/286/syslog-ng-messages-to-bash-script.dump#comments</comments>
		<pubDate>Mon, 22 Jun 2009 13:53:15 +0000</pubDate>
		<dc:creator>Blokje</dc:creator>
				<category><![CDATA[blogpost]]></category>
		<category><![CDATA[Bash]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[logging]]></category>
		<category><![CDATA[syslog-ng]]></category>

		<guid isPermaLink="false">http://blog.kerneldump.org/?p=286</guid>
		<description><![CDATA[I am falling more and more in love with syslog-ng. After some trial and error I&#8217;ve finally configured to parse messages and send them to zabbix for statistics logging. Sounds cool uh? Well it is. Of course the posibilities are endless when you think about it. For me it is just sake to get performance [...]]]></description>
		<wfw:commentRss>http://blog.kerneldump.org/286/syslog-ng-messages-to-bash-script.dump/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Apache + SVN + LDAP</title>
		<link>http://blog.kerneldump.org/277/apache-svn-ldap.dump</link>
		<comments>http://blog.kerneldump.org/277/apache-svn-ldap.dump#comments</comments>
		<pubDate>Sat, 06 Jun 2009 16:30:22 +0000</pubDate>
		<dc:creator>Blokje</dc:creator>
				<category><![CDATA[blogpost]]></category>
		<category><![CDATA[apache]]></category>
		<category><![CDATA[LDAP]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[svn]]></category>

		<guid isPermaLink="false">http://blog.kerneldump.org/?p=277</guid>
		<description><![CDATA[Just because I always forget: &#60;VirtualHost 192.168.1.34:7000&#62; &#60;Location /&#62; DAV svn SVNPath /data/svn SVNReposName "Subversion" AuthName "Authenticate for Subversion" AuthType Basic AuthBasicProvider ldap AuthzLDAPAuthoritative on AuthLDAPUrl ldap://192.168.1.33/dc=kerneldump,dc=org?uid Require ldap-group cn=svnusers,ou=Group,dc=kerneldump,dc=org AuthLDAPGroupAttribute memberUid AuthLDAPGroupAttributeIsDN off Order deny,allow Allow from all CustomLog /var/log/httpd/svn_access_log combined ErrorLog /var/log/httpd/svn_error_log &#60;/Location&#62; &#60;/VirtualHost&#62; Put this in an configuration file like mysvn.conf and [...]]]></description>
		<wfw:commentRss>http://blog.kerneldump.org/277/apache-svn-ldap.dump/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Syslog-ng and MySQL</title>
		<link>http://blog.kerneldump.org/273/syslog-ng-and-mysql.dump</link>
		<comments>http://blog.kerneldump.org/273/syslog-ng-and-mysql.dump#comments</comments>
		<pubDate>Thu, 04 Jun 2009 12:16:03 +0000</pubDate>
		<dc:creator>Blokje</dc:creator>
				<category><![CDATA[blogpost]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[MySQL]]></category>
		<category><![CDATA[Syslog]]></category>

		<guid isPermaLink="false">http://blog.kerneldump.org/?p=273</guid>
		<description><![CDATA[Just a quick note about Syslog-NG with an mysql backend. # UDP Syslog Port Listener source s_udp { udp( ip('192.168.0.1') port(514) ); }; # MySQL Destination destination d_mysql { sql( type(mysql) host("server") username("syslog") password("syslog") database("syslog") table("logs") table("messages_${R_YEAR}${R_MONTH}${R_DAY}") columns("datetime", "host", "program", "pid", "message", "facility", "priority") values("$R_DATE", "$HOST", "$PROGRAM", "$PID", "$MSGONLY", "$FACILITY", "$LEVEL") indexes("datetime", "host", "program", "pid", [...]]]></description>
		<wfw:commentRss>http://blog.kerneldump.org/273/syslog-ng-and-mysql.dump/feed</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>system-config-cluster no fonts</title>
		<link>http://blog.kerneldump.org/269/system-config-cluster-no-fonts.dump</link>
		<comments>http://blog.kerneldump.org/269/system-config-cluster-no-fonts.dump#comments</comments>
		<pubDate>Wed, 13 May 2009 09:38:40 +0000</pubDate>
		<dc:creator>Blokje</dc:creator>
				<category><![CDATA[blogpost]]></category>
		<category><![CDATA[Clustering]]></category>
		<category><![CDATA[fontconfig]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[RH Cluster]]></category>

		<guid isPermaLink="false">http://blog.kerneldump.org/269/system-config-cluster-no-fonts.dump</guid>
		<description><![CDATA[Just a quick note cause I&#8217;m able to constantly forget. When you see the following message when starting system-config-cluster: No fonts found; this probably means that the fontconfig library is not correctly configured. You may need to edit the fonts.conf configuration file. More information about fontconfig can be found in the fontconfig(3) manual page and [...]]]></description>
		<wfw:commentRss>http://blog.kerneldump.org/269/system-config-cluster-no-fonts.dump/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Linux-Wiki.NL</title>
		<link>http://blog.kerneldump.org/220/linuxwikinl.dump</link>
		<comments>http://blog.kerneldump.org/220/linuxwikinl.dump#comments</comments>
		<pubDate>Sun, 11 Jan 2009 15:23:54 +0000</pubDate>
		<dc:creator>Blokje</dc:creator>
				<category><![CDATA[blogpost]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Wiki]]></category>

		<guid isPermaLink="false">http://blog.kerneldump.org/220/linuxwikinl.dump</guid>
		<description><![CDATA[So, I&#8217;ve got a new domain. Linux-Wiki.NL. Simple goal is to improve and remember my linux skills over time. Mostly you perform an action and 6 months later when you need to do it again you forgot it. To prevent this I started stumbling around with words linux and wiki in domain names. Surprisingly a [...]]]></description>
		<wfw:commentRss>http://blog.kerneldump.org/220/linuxwikinl.dump/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PHP5  and 64 bits</title>
		<link>http://blog.kerneldump.org/177/php5-and-64-bits.dump</link>
		<comments>http://blog.kerneldump.org/177/php5-and-64-bits.dump#comments</comments>
		<pubDate>Fri, 06 Jun 2008 11:17:47 +0000</pubDate>
		<dc:creator>Blokje</dc:creator>
				<category><![CDATA[blogpost]]></category>
		<category><![CDATA[64 bits]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[php5]]></category>

		<guid isPermaLink="false">http://blog.kerneldump.org/?p=177</guid>
		<description><![CDATA[When compiling PHP on a 64 bit system don&#8217;t forget to add &#8220;&#8211;with-libdir=/lib64&#8243; to the configure statement. A typical configure statement would be: ./configure &#8211;with-apxs2=/usr/local/apache2/bin/apxs &#8211;with-mysql &#8211;with-libdir=/lib64 If you forget &#8220;&#8211;with-libdir&#8221;, make will fail in the mysql section with the error: configure: error: Cannot find libmysqlclient under /usr. Note that the MySQL client library is [...]]]></description>
		<wfw:commentRss>http://blog.kerneldump.org/177/php5-and-64-bits.dump/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ubuntu is no Linux, Ubuntu is Linux</title>
		<link>http://blog.kerneldump.org/174/ubuntu-is-no-linux-ubuntu-is-linux.dump</link>
		<comments>http://blog.kerneldump.org/174/ubuntu-is-no-linux-ubuntu-is-linux.dump#comments</comments>
		<pubDate>Fri, 23 May 2008 08:06:34 +0000</pubDate>
		<dc:creator>Blokje</dc:creator>
				<category><![CDATA[blogpost]]></category>
		<category><![CDATA[Digg.com]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://blog.kerneldump.org/?p=174</guid>
		<description><![CDATA[Lately I&#8217;m stunned by the attention (X/K)Ubuntu receives. And more and more I&#8217;m convinced people really like it. But still. Ubuntu is no ordinary Linux version. It is made for &#8220;Human beings&#8221;. I admit. I gave it a few tries, even more than a few. I ran it on several machines. But it never succeeded [...]]]></description>
		<wfw:commentRss>http://blog.kerneldump.org/174/ubuntu-is-no-linux-ubuntu-is-linux.dump/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Fedora DS in corporate environments</title>
		<link>http://blog.kerneldump.org/171/fedora-ds-in-corporate-environments.dump</link>
		<comments>http://blog.kerneldump.org/171/fedora-ds-in-corporate-environments.dump#comments</comments>
		<pubDate>Wed, 23 Apr 2008 10:30:55 +0000</pubDate>
		<dc:creator>Blokje</dc:creator>
				<category><![CDATA[blogpost]]></category>
		<category><![CDATA[Fedora Directory Server]]></category>
		<category><![CDATA[LDAP]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Work]]></category>

		<guid isPermaLink="false">http://blog.kerneldump.org/?p=171</guid>
		<description><![CDATA[Currently working for a company we decided to implement Fedora Directory Services as Unix Identity Storage. A nice LDAP server system with a nice interface. Not really useful in the beginnings, probably due to the lack of my own knowledge but it supports nice fail over and replication methods. Multi-master replication was easy to setup. [...]]]></description>
		<wfw:commentRss>http://blog.kerneldump.org/171/fedora-ds-in-corporate-environments.dump/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Putty settings</title>
		<link>http://blog.kerneldump.org/167/putty-settings.dump</link>
		<comments>http://blog.kerneldump.org/167/putty-settings.dump#comments</comments>
		<pubDate>Thu, 27 Mar 2008 09:48:29 +0000</pubDate>
		<dc:creator>Blokje</dc:creator>
				<category><![CDATA[blogpost]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[PuTTY]]></category>
		<category><![CDATA[Settings]]></category>

		<guid isPermaLink="false">http://www.kerneldump.org/167/putty-settings.dump</guid>
		<description><![CDATA[Wieers wrote a nice article about putty settings which you really should put as default. Darkblue is better readable and some other stuff is also configured. I really would like this to be the default putty settings in the future. Article: Improving Putty Setttings on Windows]]></description>
		<wfw:commentRss>http://blog.kerneldump.org/167/putty-settings.dump/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
