<?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>das krähen_nest</title>
	<atom:link href="http://blog.karstenbrusch.de/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.karstenbrusch.de</link>
	<description></description>
	<lastBuildDate>Tue, 13 Dec 2011 09:54:46 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3</generator>
		<item>
		<title>mysql backup script</title>
		<link>http://blog.karstenbrusch.de/2011/08/mysql-backup-script/</link>
		<comments>http://blog.karstenbrusch.de/2011/08/mysql-backup-script/#comments</comments>
		<pubDate>Thu, 18 Aug 2011 09:48:52 +0000</pubDate>
		<dc:creator>Karsten</dc:creator>
				<category><![CDATA[linux und OSS]]></category>

		<guid isPermaLink="false">http://blog.karstenbrusch.de/?p=521</guid>
		<description><![CDATA[#!/bin/bash # Author: Karsten Brusch # change to fit you needs USER=mysql PASS=mypass BACKUPDIR=/nfs/mysql/ BACKUPS LOGFILE=/nfs/mysql/daily-backup.log #no changes needed below DATE=`date +%F_%H-%M-%S` FILENAME=mysqldump.$DATE.sql echo &#34;##########################################&#34; &#62;&#62; $LOGFILE echo &#34;Starting DB backup on `hostname` on `date +%F` `date +%T`&#34; &#62;&#62; $LOGFILE /opt/postman/mysql/bin/mysqldump -u$USER -p$PASS --all-databases 2&#62;&#62; $LOGFILE &#124; gzip &#62; $BACKUPDIR/$FILENAME.gz if [ ${PIPESTATUS[0]} -eq 0 [...]]]></description>
		<wfw:commentRss>http://blog.karstenbrusch.de/2011/08/mysql-backup-script/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>schutzraum</title>
		<link>http://blog.karstenbrusch.de/2011/07/schutzraum/</link>
		<comments>http://blog.karstenbrusch.de/2011/07/schutzraum/#comments</comments>
		<pubDate>Sat, 09 Jul 2011 08:10:49 +0000</pubDate>
		<dc:creator>Karsten</dc:creator>
				<category><![CDATA[music]]></category>
		<category><![CDATA[videos]]></category>

		<guid isPermaLink="false">http://blog.karstenbrusch.de/?p=452</guid>
		<description><![CDATA[]]></description>
		<wfw:commentRss>http://blog.karstenbrusch.de/2011/07/schutzraum/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>modzip.sh &#8211; modify the content of a zip file</title>
		<link>http://blog.karstenbrusch.de/2010/11/modzip/</link>
		<comments>http://blog.karstenbrusch.de/2010/11/modzip/#comments</comments>
		<pubDate>Wed, 24 Nov 2010 08:50:15 +0000</pubDate>
		<dc:creator>Karsten</dc:creator>
				<category><![CDATA[linux und OSS]]></category>
		<category><![CDATA[linux]]></category>

		<guid isPermaLink="false">http://blog.karstenbrusch.de/?p=429</guid>
		<description><![CDATA[Sometimes you need to modify the content of a zip file in the command line because the server doesn&#39;t have a X server and you have no access to the file system remotely. What this script does: modify text files inside a zip file with vi (or any other editor you like) modify the content [...]]]></description>
		<wfw:commentRss>http://blog.karstenbrusch.de/2010/11/modzip/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>find with -exec: files older than x day</title>
		<link>http://blog.karstenbrusch.de/2010/11/find-with-exec-files-older-than-x-days/</link>
		<comments>http://blog.karstenbrusch.de/2010/11/find-with-exec-files-older-than-x-days/#comments</comments>
		<pubDate>Fri, 05 Nov 2010 09:23:36 +0000</pubDate>
		<dc:creator>Karsten</dc:creator>
				<category><![CDATA[linux und OSS]]></category>
		<category><![CDATA[linux]]></category>

		<guid isPermaLink="false">http://blog.karstenbrusch.de/?p=424</guid>
		<description><![CDATA[You can easily move files of a certain age to a different location (for example backup tape or network share) In this example you will search for files only (-type f) which are older than 30 days (-mtime +30) and execute the move command for each file returned. This list of files is represented by [...]]]></description>
		<wfw:commentRss>http://blog.karstenbrusch.de/2010/11/find-with-exec-files-older-than-x-days/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Howto create a sftp-only user on (RedHat) Linux</title>
		<link>http://blog.karstenbrusch.de/2010/10/howto-create-a-sftp-only-user-on-redhat-linux/</link>
		<comments>http://blog.karstenbrusch.de/2010/10/howto-create-a-sftp-only-user-on-redhat-linux/#comments</comments>
		<pubDate>Wed, 20 Oct 2010 10:42:23 +0000</pubDate>
		<dc:creator>Karsten</dc:creator>
				<category><![CDATA[linux und OSS]]></category>
		<category><![CDATA[linux]]></category>

		<guid isPermaLink="false">http://blog.karstenbrusch.de/?p=413</guid>
		<description><![CDATA[objective Create a sftp-only user to have rw-access a specific folder only on a system with disabled ssh shell, port forwarding and X11-forwarding. This is achieved by setting the sftp shell in /etc/passwd required openssh version 4.8p1 or newer (this supports chrootdirectory) &#8211;&#62; refer this page you can check your version with:sshd -v If you [...]]]></description>
		<wfw:commentRss>http://blog.karstenbrusch.de/2010/10/howto-create-a-sftp-only-user-on-redhat-linux/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>4000m Adrenalin</title>
		<link>http://blog.karstenbrusch.de/2010/09/4000m-adrenalin/</link>
		<comments>http://blog.karstenbrusch.de/2010/09/4000m-adrenalin/#comments</comments>
		<pubDate>Wed, 01 Sep 2010 09:00:55 +0000</pubDate>
		<dc:creator>Karsten</dc:creator>
				<category><![CDATA[erfahrungen]]></category>
		<category><![CDATA[videos]]></category>

		<guid isPermaLink="false">http://blog.karstenbrusch.de/?p=408</guid>
		<description><![CDATA[]]></description>
		<wfw:commentRss>http://blog.karstenbrusch.de/2010/09/4000m-adrenalin/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>pictures from dakar</title>
		<link>http://blog.karstenbrusch.de/2010/02/pictures-from-dakar/</link>
		<comments>http://blog.karstenbrusch.de/2010/02/pictures-from-dakar/#comments</comments>
		<pubDate>Mon, 01 Feb 2010 23:07:56 +0000</pubDate>
		<dc:creator>Karsten</dc:creator>
				<category><![CDATA[photos]]></category>

		<guid isPermaLink="false">http://blog.karstenbrusch.de/?p=375</guid>
		<description><![CDATA[]]></description>
		<wfw:commentRss>http://blog.karstenbrusch.de/2010/02/pictures-from-dakar/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>winterlandschaft</title>
		<link>http://blog.karstenbrusch.de/2010/01/winterlandschaft/</link>
		<comments>http://blog.karstenbrusch.de/2010/01/winterlandschaft/#comments</comments>
		<pubDate>Tue, 19 Jan 2010 23:32:11 +0000</pubDate>
		<dc:creator>Karsten</dc:creator>
				<category><![CDATA[photos]]></category>

		<guid isPermaLink="false">http://blog.karstenbrusch.de/?p=367</guid>
		<description><![CDATA[]]></description>
		<wfw:commentRss>http://blog.karstenbrusch.de/2010/01/winterlandschaft/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Offener Brief an die Bundestagsabgeordneten</title>
		<link>http://blog.karstenbrusch.de/2009/05/offener-brief/</link>
		<comments>http://blog.karstenbrusch.de/2009/05/offener-brief/#comments</comments>
		<pubDate>Mon, 11 May 2009 12:00:49 +0000</pubDate>
		<dc:creator>Karsten</dc:creator>
				<category><![CDATA[politisches]]></category>
		<category><![CDATA[politik]]></category>

		<guid isPermaLink="false">http://blog.karstenbrusch.de/?p=267</guid>
		<description><![CDATA[Ich habe heute folgenden offenen Brief per Mail an alle 612 Bundestagsabgeordnete geschickt. Wenn du ebenfalls dein Recht auf freie Meinungs&#228;u&#223;erungen nutzen m&#246;chtest und unseren Volksvertretern deinen Standpunkt zum Thema Vorratsdatenspeicherung und Internetsperren darlegen m&#246;chtest hast du hier http://briefe.gegen.daten.speicherung.eu/ die M&#246;glichkeit eine Mail automatisiert an alle Bundestagsabgeordneten zu schicken. Au&#223;erdem kannst du das erzeugte pdf [...]]]></description>
		<wfw:commentRss>http://blog.karstenbrusch.de/2009/05/offener-brief/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>going east</title>
		<link>http://blog.karstenbrusch.de/2008/10/going-east/</link>
		<comments>http://blog.karstenbrusch.de/2008/10/going-east/#comments</comments>
		<pubDate>Wed, 22 Oct 2008 16:39:55 +0000</pubDate>
		<dc:creator>Karsten</dc:creator>
				<category><![CDATA[photos]]></category>

		<guid isPermaLink="false">http://blog.karstenbrusch.de/?p=225</guid>
		<description><![CDATA[]]></description>
		<wfw:commentRss>http://blog.karstenbrusch.de/2008/10/going-east/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

