<?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>evølutiøn-515.net &#187; Linux</title>
	<atom:link href="http://blog.evolution515.net/article/category/administer/linux/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.evolution515.net</link>
	<description>Chaos ist nur eine andere Bezeichung für steigende Komplexität.</description>
	<lastBuildDate>Wed, 03 Jun 2009 22:55:19 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>How to setup HTTPS for your Apache2</title>
		<link>http://blog.evolution515.net/article/how-to-setup-https-for-your-apache2/</link>
		<comments>http://blog.evolution515.net/article/how-to-setup-https-for-your-apache2/#comments</comments>
		<pubDate>Mon, 23 Feb 2009 15:32:56 +0000</pubDate>
		<dc:creator>Blu:RayNe</dc:creator>
				<category><![CDATA[Administratives]]></category>
		<category><![CDATA[Allgemein]]></category>
		<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://blog.evolution515.net/?p=555</guid>
		<description><![CDATA[Basic Information
First off, you need a SSL-Certificate for HTTPS. This certificates are usualy checked by your browser against SSL providers such as VeriSign for validity. If the outcame is invalid, some website may have been replaced with a fake-version by a hacker. The result is, that your browser warns you that the certificate for the [...]]]></description>
			<content:encoded><![CDATA[<h2>Basic Information</h2>
<p>First off, you need a SSL-Certificate for HTTPS. This certificates are usualy checked by your browser against SSL providers such as VeriSign for validity. If the outcame is invalid, some website may have been replaced with a fake-version by a hacker. The result is, that your browser warns you that the certificate for the site is invalid and it probalby was hacked or stuff like this (there was also a bug on creating invalid certificates on Debian-Linux some time ago *G*).</p>
<p>Anyway, you can still add the certificate as exception and get SSL-connection to the website, so no one is seeing what you are actually doing on that site or what data is beeing transferred (e.g. your E-Mail Client).</p>
<h2>Basic Setup</h2>
<p><strong>The easiest way to setup this stuff is as of following (assuming using Debian/Ubuntu and Apache2):</strong></p>
<blockquote><p>$ apt-get install openssl<br />
$ mkdir  -P /etc/apache2/ssl/<br />
$ openssl req $@ -new -x509 -days 365 -nodes -out server.crt -keyout server.key</p></blockquote>
<p><strong>Then add something like this to your Apache2-Configuration:</strong></p>
<blockquote><p>NameVirtualHost 443</p>
<p>&lt;VirtualHost *:443&gt;</p>
<p>SSLEngine on<br />
SSLOptions +FakeBasicAuth +ExportCertData +StrictRequire<br />
SSLCertificateFile /etc/apache2/ssl/server.crt<br />
SSLCertificateKeyFile /etc/apache2/ssl/server.key<br />
# SSLProtocol -all +TLSv1 +<em>SSLv3<br />
</em>SSLProtocol all -SSLv2 <em><br />
</em></p>
<p><em>[...]</em></p>
<p>&lt;/VirtualHost&gt;</p></blockquote>
<p>Basically, that&#8217;s it! Don&#8217;t forget to restart apache and also note that SSL2 is outdated and therefore unsecure. Be aware of that on using MSIE-Browsers from Microsoft! So i just disallowed it here in the example above. It also has opions set for using Basic HTTP-Auth on HTTPS and sets also some SSL-specific apache environmental veriables.</p>
<p>If Apache doesn&#8217;t start up look under /var/log/apache2/ for error messages!</p>
<h2>Extended Setup</h2>
<p>Some snippets if you already have a server key or want need to create your own, for having it signed and so on. If you set a password for a server key – which is indeed required for secuerity reasons – note, that Apache asks for it on startup.</p>
<p><strong>Create a server key</strong></p>
<blockquote><p>openssl genrsa -des3 -out server.key 1024</p></blockquote>
<p><strong>You can convert the secure key to an unsecure („without password“):</strong></p>
<blockquote><p>$ openssl rsa -in server.key -out server.key.insecure</p></blockquote>
<p><strong>Create a basic  certificate for your key by using this:</strong></p>
<blockquote><p>$ openssl req -new -key server.key -out server.csr</p></blockquote>
<p><strong>Then sign it:</strong></p>
<blockquote><p>$ openssl x509 -req -days 365 -in server.csr -signkey server.key -out server.crt</p></blockquote>
<p><strong>Same stuff with insecure key:</strong></p>
<blockquote><p>$ openssl x509 -req -days 365 -in server.csr -signkey server.key.insecure -out server.crt</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://blog.evolution515.net/article/how-to-setup-https-for-your-apache2/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>MSIE &#8211; Dante&#8217;s Inferno for Linux (or Web Developers)</title>
		<link>http://blog.evolution515.net/article/msie-dantes-inferno-for-linux-or-web-developers/</link>
		<comments>http://blog.evolution515.net/article/msie-dantes-inferno-for-linux-or-web-developers/#comments</comments>
		<pubDate>Sun, 21 Dec 2008 01:22:13 +0000</pubDate>
		<dc:creator>Blu:RayNe</dc:creator>
				<category><![CDATA[Allgemein]]></category>
		<category><![CDATA[Browser]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[msie]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://blog.evolution515.net/article/msie-dantes-inferno-for-linux-or-web-developers/</guid>
		<description><![CDATA[ies4linux is a nice project that brings MSIE 5.0, 5.5, 6.0 and 7 to Linux under WINE.
]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.tatanka.com.br/ies4linux/">ies4linux</a> is a nice project that brings MSIE 5.0, 5.5, 6.0 and 7 to Linux under WINE.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.evolution515.net/article/msie-dantes-inferno-for-linux-or-web-developers/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ubuntu: Is the intrepid ibex still jumping?</title>
		<link>http://blog.evolution515.net/article/ubuntu-is-the-intrepid-ibex-still-jumping/</link>
		<comments>http://blog.evolution515.net/article/ubuntu-is-the-intrepid-ibex-still-jumping/#comments</comments>
		<pubDate>Fri, 31 Oct 2008 09:11:45 +0000</pubDate>
		<dc:creator>Blu:RayNe</dc:creator>
				<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://blog.evolution515.net/?p=322</guid>
		<description><![CDATA[Or update day: it still jumps over the rocks, but seems it got one foot hurt: keyboard mapping doesn&#8217;t work for me anymore &#8211; the arrow keys are not mapped rightly.
At least Ubuntu is a big distro, so there are already tickets for it: 
https://bugs.launchpad.net/ubuntu/+bug/255861
https://bugs.launchpad.net/ubuntu/+source/xorg-server/+bug/255008
Damn. I should have waited another week, but i don&#8217;t want [...]]]></description>
			<content:encoded><![CDATA[<p>Or update day: it still jumps over the rocks, but seems it got one foot hurt: keyboard mapping doesn&#8217;t work for me anymore &#8211; the arrow keys are not mapped rightly.</p>
<p><strong>At least Ubuntu is a big distro, so there are already tickets for it: </strong><a href=" https://bugs.launchpad.net/ubuntu/+bug/255861"></p>
<p>https://bugs.launchpad.net/ubuntu/+bug/255861</p>
<p>https://bugs.launchpad.net/ubuntu/+source/xorg-server/+bug/255008</a></p>
<p>Damn. I should have waited another week, but i don&#8217;t want to go back anymore. At least all other things still seem to work and my Nautilus now has tabs. The update took about 40mins and worked fine. Good job!</p>
<div class="dean_ch" style="white-space: wrap;">setxkbmap -model evdev<br />
setxkbmap -model evdev -layout de -option lv3:ralt_switch</div>
<p>Hmmm.. works&#8230; partly <img src='http://blog.evolution515.net/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' /> </p>
<p>If i just knew that Fedora works now better. I tested out the latest version a month ago and it made up a very stable and fresh impression. Perhaps i&#8217;ll give it another try one day.</p>
<p>Well, i guess i&#8217;ll make up a new version of my <em>xmodmap.rc</em> now :/</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.evolution515.net/article/ubuntu-is-the-intrepid-ibex-still-jumping/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>YouTube and transcoding video with vixy.net</title>
		<link>http://blog.evolution515.net/article/youtube-and-transcoding-video-with-vixynet/</link>
		<comments>http://blog.evolution515.net/article/youtube-and-transcoding-video-with-vixynet/#comments</comments>
		<pubDate>Tue, 12 Aug 2008 10:57:19 +0000</pubDate>
		<dc:creator>Blu:RayNe</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Netzwelt]]></category>
		<category><![CDATA[mpeg4]]></category>
		<category><![CDATA[video converter]]></category>
		<category><![CDATA[video transcoding]]></category>
		<category><![CDATA[vixy]]></category>
		<category><![CDATA[youtube]]></category>

		<guid isPermaLink="false">http://blog.evolution515.net/?p=263</guid>
		<description><![CDATA[I hate all those low quality videos from YouTube. You know there is that trick to concenate &#38;fmt=18 to YouTube-URLs to have it access the new servers with higher quality videos and better bandwidth performance, but still that does not makes me happy.
Having FLV is ok for me, although I dislike non-standard container formats. But [...]]]></description>
			<content:encoded><![CDATA[<p>I hate all those low quality videos from YouTube. You know there is that trick to concenate <em>&amp;fmt=18</em> to YouTube-URLs to have it access the new servers with higher quality videos and better bandwidth performance, but still that does not makes me happy.</p>
<p>Having FLV is ok for me, although I dislike non-standard container formats. But the point is copying those FLVs for friends often ends up by them complaining not beeing able to play the files on their Windows or Mac. The same problem persists on the iPod or my mobile phone that just understands 3GP in the moment.</p>
<p>So i end up having to convert the files… or transcoding them.</p>
<h3>Conversion vs. Transcoding</h3>
<p>Converting usally means decoding the video to a full video-picture – probably with or without any post-processing– and loosing the visual information that was artifically added again by encoding. Also, most of the  bitstream-information on the decoded stream is also lost, because you only see a the picture and not what abstract data is behind.</p>
<p>That is the place where transcoding comes into play: It transcodes the data be going deep into the input stream directly translating it the the output stream. The “visual step“ between encoding and deocoding is skipped, because not necessary. In the end we have not only faster conversion process, but have also retained all possible quality. </p>
<p>Ok, if input and output en/decoding algorithms differ too much or you wanna resize the video you still have to convert the videos. Point is that the algorithms used in input and output stream have to be similar to each other (beeing often MPEG4 on nowadays video material).</p>
<p>I discovered <a href="http://www.vixy.net">vixy</a> (which is based on <a href="http://www.ffmpeg.com">ffmpeg</a>) und does a nice job on transcoding. On windows and Mac you have a GUI limited to YouTube. The Online-Converter itself seems to be always overloaded. So, time to compile our FLV 2 MPEG4 Tool ourselves (for Ubuntu/Debian):</p>
<div class="dean_ch" style="white-space: wrap;">$ apt-get <span class="kw2">install</span> apt-get <span class="kw2">install</span> libavcodec-dev libavformat-dev libavutil-dev ffmpeg subversion<br />
$ apt-get build-dep ffmpeg<br />
$ <span class="kw2">mkdir</span> flv2mpeg4<br />
$ <span class="kw3">cd</span> flv2mpeg4<br />
$ svn <span class="kw2">co</span> https://vixynet.svn.sourceforge.net/svnroot/vixynet/trunk/flv2mpeg4/ .<br />
$ <span class="kw3">cd</span> src<br />
$ <span class="kw2">gcc</span> -O3 -o flv2mpeg4 avformat_writer.c dcprediction.c flv2mpeg4.c fetch.c flvdecoder.c m4vencode.c mp3header.c -lavformat -lavcodec -lavutil -I/usr/include/ffmpeg -L/usr/lib<br />
$ <span class="kw2">cp</span> flv2mpeg4 /usr/bin</div>
<p>A last word to YouTube. I don&#8217;t suggest uploading to it in no way!</p>
<ul>
<li>They manipulate view counters on videos with strong political content (e.g. 200 views and 300 comments?)</li>
<li>Everything you upload, belongs to them! Read the terms!</li>
<li>Quality still sucks  (it&#8217;s for the american market; but we have broadband here in germany!)</li>
<li>Servers are often damn slow, espacially at 23:00 CEST+1 when all americans go on the site</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://blog.evolution515.net/article/youtube-and-transcoding-video-with-vixynet/feed/</wfw:commentRss>
		<slash:comments>10</slash:comments>
		</item>
		<item>
		<title>„Sehr geehrter Kunde, Ihre Mail ist Spam!“</title>
		<link>http://blog.evolution515.net/article/%e2%80%9esehr-geehrter-kunde-ihre-mail-ist-spam%e2%80%9c/</link>
		<comments>http://blog.evolution515.net/article/%e2%80%9esehr-geehrter-kunde-ihre-mail-ist-spam%e2%80%9c/#comments</comments>
		<pubDate>Wed, 16 Jul 2008 08:41:49 +0000</pubDate>
		<dc:creator>Blu:RayNe</dc:creator>
				<category><![CDATA[Berufsalltag]]></category>
		<category><![CDATA[Browser]]></category>
		<category><![CDATA[Fun]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[e-mail]]></category>
		<category><![CDATA[spam]]></category>

		<guid isPermaLink="false">http://blog.evolution515.net/?p=223</guid>
		<description><![CDATA[Und das sag ich immer wieder, da es anscheinend noch unz&#228;hlige Leute in der Druck/IT-Branche gibt, die eigentlich hier nichts zu suchen h&#228;tten. Ich erhalte immer noch viel zu Mails ohne Subject und ohne eindeutigen Bodytext, der mir beschreiben w&#252;rde, um was es eigentlich geht. Manchmal fehlt sogar die Ansprache, oder Footer mit Firmenadresse.
Selbst ist [...]]]></description>
			<content:encoded><![CDATA[<p>Und das sag ich immer wieder, da es anscheinend noch unz&#228;hlige Leute in der Druck/IT-Branche gibt, die eigentlich hier nichts zu suchen h&#228;tten. Ich erhalte immer noch viel zu Mails ohne Subject und ohne eindeutigen Bodytext, der mir beschreiben w&#252;rde, um was es eigentlich geht. Manchmal fehlt sogar die Ansprache, oder Footer mit Firmenadresse.</p>
<p>Selbst ist man damit oft zu R&#252;cksprachen gezwungen, die oft lange &#252;berfl&#252;ssige Telefongespr&#228;che nach sich ziehen. Aber besser wenn der Kunde von selbst anruft, da gibt es noch andere M&#246;glichkeiten…</p>
<blockquote><p>–„Neee.. ich habe Ihre E-Mail nicht gesehen.. ich glaube ich hab da nichts bekommen… moment… ich guck mal… ah.. hier.. Spam.. naja.. die Mail is ja auch Spam&#8230;“<br />
– „Wie! Spam?! Meine Mail ist doch keine Spam… !“ <em>(sichtlich verbl&#252;fft)</em><br />
– „Kein Subject, kein Inhalt und nur eine PDF als Anhang w&#228;re unter meiner Sichtweise auch Spam… und schlie&#223;lich ist die Absenderadresse f&#228;lschbar. Oder was w&#252;rde sie unter Sichtweise des Anti-Spam-Programms sagen?“</p></blockquote>
<p>Und dann gab es gestern noch die Frage an mich: „Warum hast du die UPS-Mail nicht bearbeitet, die ich dir weitergeleitet habe?“. Und ich sagte nur „UPS-Mails haben keine .EXE-&#196;nhange und kommen nicht von tfds.vddseew@hotmail.com“<strong> </strong><em>*seufz*</em></p>
<p>Hierbei handelte es sich wieder einmal um Vorgesetzte…</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.evolution515.net/article/%e2%80%9esehr-geehrter-kunde-ihre-mail-ist-spam%e2%80%9c/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Commonly used Debian repositiories</title>
		<link>http://blog.evolution515.net/article/commonlay-used-debian-repositiories/</link>
		<comments>http://blog.evolution515.net/article/commonlay-used-debian-repositiories/#comments</comments>
		<pubDate>Wed, 04 Jul 2007 12:00:12 +0000</pubDate>
		<dc:creator>Blu:RayNe</dc:creator>
				<category><![CDATA[Allgemein]]></category>
		<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://blog.evolution515.net/article/commonlay-used-debian-repositiories/</guid>
		<description><![CDATA[Ok, here some often needed debian repositiories for your /etc/apt/sources.list. This article will get updated when needed.
# Unoffical packages that harm debian licenses
deb http://ftp.debian-unofficial.org/debian etch main contrib non-free restricted
# Distribution Mirror server from 1&#38;amp;1
deb http://update.rootmaster.info/debian stable &#160;main contrib non-free
deb http://update.rootmaster.info/debian-non-US stable/non-US main contrib non-free
# Distribution Mirror server from Strato
deb http://ftp.serverkompetenz.de/debian/ etch main contrib non-free
# Offical [...]]]></description>
			<content:encoded><![CDATA[<p>Ok, here some often needed debian repositiories for your <em>/etc/apt/sources.list</em>. This article will get updated when needed.</p>
<div class="dean_ch" style="white-space: wrap;"># Unoffical packages that harm debian licenses<br />
deb http://ftp.debian-unofficial.org/debian etch main contrib non-free restricted</p>
<p># Distribution Mirror server from 1&amp;amp;1<br />
deb http://update.rootmaster.info/debian stable &nbsp;main contrib non-free<br />
deb http://update.rootmaster.info/debian-non-US stable/non-US main contrib non-free</p>
<p># Distribution Mirror server from Strato<br />
deb http://ftp.serverkompetenz.de/debian/ etch main contrib non-free</p>
<p># Offical Debian<br />
deb http://http.us.debian.org/debian stable main contrib non-free</p>
<p># Debian security updates<br />
deb http://security.debian.org/debian-security stable/updates main contrib non-free</p>
<p># Up-to-date Apache, PHP and MySQL<br />
# deb http://dotdeb.netmirror.org/ stable all<br />
# deb-src http://dotdeb.netmirror.org/ stable all<br />
deb http://packages.dotdeb.org etch all</p>
<p># mplayer, ffmpeg and so on&#8230;<br />
deb http://www.debian-multimedia.org etch main</p>
<p># Mono<br />
deb http://www.mindtouch.com/apt/ sarge main contrib non-free#</p>
<p># Updates for viruses &amp;amp; spam filters<br />
deb http://volatile.debian.net/debian-volatile sarge/volatile main contrib<br />
deb http://people.debian.org/~dexter php5.1 sarge<br />
deb-src http://people.debian.org/~dexter php5.1 sarge<br />
deb http://www.os-works.com/debian testing main</p>
<p># Backports &#8211; if you really need them!<br />
# deb http://www.backports.org/debian/ sarge-backports main contrib non-free<br />
&nbsp;</div>
]]></content:encoded>
			<wfw:commentRss>http://blog.evolution515.net/article/commonlay-used-debian-repositiories/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Backup remotely via Perl</title>
		<link>http://blog.evolution515.net/article/backup-remotely-via-perl/</link>
		<comments>http://blog.evolution515.net/article/backup-remotely-via-perl/#comments</comments>
		<pubDate>Tue, 29 May 2007 08:37:08 +0000</pubDate>
		<dc:creator>Blu:RayNe</dc:creator>
				<category><![CDATA[Allgemein]]></category>
		<category><![CDATA[Datenbanken]]></category>
		<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://blog.evolution515.net/article/backup-remotely-via-perl/</guid>
		<description><![CDATA[Ok, i guess you love that cheap servers only with FTP and HTTP, and minimal PHP4-Timeout and lame CGI and no real possibility but to do a good backup job. Well, Perl was once a dominant language and can do much for you.

The benefits of following backup solutions are as follows:


Backup is done via calling [...]]]></description>
			<content:encoded><![CDATA[<p>Ok, i guess you love that cheap servers only with FTP and HTTP, and minimal PHP4-Timeout and lame CGI and no real possibility but to do a good backup job. Well, Perl was once a dominant language and can do much for you.<br />
<strong><br />
The benefits of following backup solutions are as follows:<br />
</strong></p>
<ul>
<li>Backup is done via calling an URL 
    </li>
<li>that invokes the <em>mysqldump </em>utility to backup your database to a local director, that is preferable outside the webroot
    </li>
<li>the data is then gzipped</li>
<li>old backups are automatically deleted</li>
<li>and then backed up via FTP to another server
    </li>
<li>and while a second server gets the backup it is more secure than having all on a single server</li>
</ul>
<p>Put this in you <em>cgi-bin</em> folder and remotely call it via CURL or test it via the browser. Don&#8217;t forget tot set <strong><em>chmod </em><em>755</em> </strong>for the files! If you backup to a directory in the webroot don&#8217;t forget to protect that directory by e.g. setting a up an .htacess-file!</p>
<div class="dean_ch" style="white-space: wrap;"><span class="co1">#!/usr/bin/perl -w</span></p>
<p><span class="kw2">use</span> CGI;<br />
<span class="kw2">use</span> POSIX <a href="http://perldoc.perl.org/functions/qw.html"><span class="kw3">qw</span></a><span class="br0">&#40;</span>strftime<span class="br0">&#41;</span>;<br />
<span class="kw2">use</span> Time::<span class="me2">Local</span>;</p>
<p><span class="re0">$query</span> &nbsp; &nbsp;= <span class="kw2">new</span> CGI<span class="br0">&#40;</span><span class="br0">&#41;</span>;<br />
<span class="re0">$file</span> &nbsp; &nbsp; = <span class="re0">$query</span>-&gt;<span class="me1">param</span><span class="br0">&#40;</span><span class="st0">&#8216;file&#8217;</span><span class="br0">&#41;</span>;<br />
<span class="re0">$filename</span> = <span class="re0">$query</span>-&gt;<span class="me1">param</span><span class="br0">&#40;</span><span class="st0">&#8216;filename&#8217;</span><span class="br0">&#41;</span>;</p>
<p>
<a href="http://perldoc.perl.org/functions/print.html"><span class="kw3">print</span></a> <span class="st0">&quot;Content-Type: text/plain<span class="es0">\n</span><span class="es0">\n</span>&quot;</span>;<br />
<span class="co1"># print &quot;Content-type: application/octet-stream\n&quot;;</span><br />
<span class="co1"># print &quot;Content-Disposition: attachment; filename=&quot;.$filename.&quot;\n&quot;;</span><br />
<span class="co1"># print &quot;Pragma: no-cache\n&quot;;</span><br />
<span class="co1"># print &quot;bash &quot;.$file;</span></p>
<p><span class="kw2">sub</span> backupMysql<br />
<span class="br0">&#123;</span><br />
&nbsp; &nbsp; <span class="kw1">my</span> <span class="br0">&#40;</span><span class="re0">$host</span><span class="br0">&#41;</span> &nbsp; &nbsp; = <span class="re0">$_</span><span class="br0">&#91;</span><span class="nu0">0</span><span class="br0">&#93;</span>;<br />
&nbsp; &nbsp; <span class="kw1">my</span> <span class="br0">&#40;</span><span class="re0">$username</span><span class="br0">&#41;</span> = <span class="re0">$_</span><span class="br0">&#91;</span><span class="nu0">1</span><span class="br0">&#93;</span>;<br />
&nbsp; &nbsp; <span class="kw1">my</span> <span class="br0">&#40;</span><span class="re0">$password</span><span class="br0">&#41;</span> = <span class="re0">$_</span><span class="br0">&#91;</span><span class="nu0">2</span><span class="br0">&#93;</span>;<br />
&nbsp; &nbsp; <span class="kw1">my</span> <span class="br0">&#40;</span><span class="re0">$database</span><span class="br0">&#41;</span> = <span class="re0">$_</span><span class="br0">&#91;</span><span class="nu0">3</span><span class="br0">&#93;</span>;<br />
&nbsp; &nbsp; <span class="kw1">my</span> <span class="br0">&#40;</span><span class="re0">$title</span><span class="br0">&#41;</span> = <span class="re0">$_</span><span class="br0">&#91;</span><span class="nu0">4</span><span class="br0">&#93;</span>;</p>
<p>&nbsp; &nbsp; <span class="re0">$time</span> = <a href="http://perldoc.perl.org/functions/time.html"><span class="kw3">time</span></a>;<br />
&nbsp; &nbsp; <span class="re0">$filename</span> = <span class="re0">$title</span>.<span class="st0">&quot;-&quot;</span>.<span class="re0">$database</span>.<span class="st0">&quot;-&quot;</span>.strftime<span class="br0">&#40;</span><span class="st0">&quot;%Y%m%d-%H%S&quot;</span>, <a href="http://perldoc.perl.org/functions/localtime.html"><span class="kw3">localtime</span></a><span class="br0">&#40;</span><span class="re0">$time</span><span class="br0">&#41;</span><span class="br0">&#41;</span>;<br />
&nbsp; &nbsp; <a href="http://perldoc.perl.org/functions/print.html"><span class="kw3">print</span></a> <span class="st0">&quot;Backup of <span class="es0">\&quot;</span>&quot;</span>.<span class="re0">$title</span>.<span class="st0">&quot;<span class="es0">\&quot;</span> (&quot;</span>.<span class="re0">$database</span>.<span class="st0">&quot;)&#8230;&quot;</span>;<br />
&nbsp; &nbsp; <a href="http://perldoc.perl.org/functions/system.html"><span class="kw3">system</span></a> <span class="st0">&quot;mysqldump -e &#8211;add-drop-table &#8211;add-locks &#8211;allow-keywords -h&quot;</span>.<span class="re0">$host</span>.<span class="st0">&quot; -u&quot;</span>.<span class="re0">$username</span>.<span class="st0">&quot; -p&quot;</span>.<span class="re0">$password</span>.<span class="st0">&quot; &quot;</span>.<span class="re0">$database</span>.<span class="st0">&quot; &gt; ../../backup/&quot;</span>.<span class="re0">$filename</span>.<span class="st0">&quot;.sql&quot;</span>;<br />
&nbsp; &nbsp; <span class="co1"># print &quot;GZip &quot;.$filename.&quot;&#8230;\n&quot;;</span><br />
&nbsp; &nbsp; <a href="http://perldoc.perl.org/functions/system.html"><span class="kw3">system</span></a> <span class="st0">&quot;gzip ../../backup/&quot;</span>.<span class="re0">$filename</span>.<span class="st0">&quot;.sql&quot;</span>;<br />
&nbsp; &nbsp; <span class="co1"># print &quot;Unlink &quot;.$filename.&quot;.sql&#8230;\n&quot;;</span><br />
&nbsp; &nbsp; <a href="http://perldoc.perl.org/functions/unlink.html"><span class="kw3">unlink</span></a> <span class="st0">&quot;../../backup/&quot;</span>.<span class="re0">$filename</span>.<span class="st0">&quot;.sql&quot;</span>;<br />
&nbsp; &nbsp; <a href="http://perldoc.perl.org/functions/print.html"><span class="kw3">print</span></a> <span class="st0">&quot;done.<span class="es0">\n</span>&quot;</span>;<br />
<span class="br0">&#125;</span></p>
<p><span class="co1"># Delete previous backups</span><br />
<span class="kw1">if</span> <span class="br0">&#40;</span>-d <span class="st0">&quot;../backup/&quot;</span><span class="br0">&#41;</span> <span class="br0">&#123;</span><br />
&nbsp; &nbsp; <span class="re0">$where</span> = <span class="st0">&quot;../backup/&quot;</span>;<br />
&nbsp; &nbsp; <span class="kw1">while</span> <span class="br0">&#40;</span><a href="http://perldoc.perl.org/functions/defined.html"><span class="kw3">defined</span></a><span class="br0">&#40;</span><span class="re0">$next</span> = &lt;<span class="re0">$where</span>/*.sql.gz&gt;<span class="br0">&#41;</span><span class="br0">&#41;</span> <span class="br0">&#123;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <a href="http://perldoc.perl.org/functions/unlink.html"><span class="kw3">unlink</span></a><span class="br0">&#40;</span><span class="re0">$next</span><span class="br0">&#41;</span>;<br />
&nbsp; &nbsp; <span class="br0">&#125;</span><br />
<span class="br0">&#125;</span></p>
<p>
backupMysql<span class="br0">&#40;</span><span class="st0">&quot;&lt;em&gt;host&lt;/em&gt;&quot;</span>, <span class="st0">&quot;&lt;em&gt;username&lt;/em&gt;&quot;</span>, <span class="st0">&quot;&lt;em&gt;password&lt;/em&gt;&quot;</span>, <span class="st0">&quot;&lt;em&gt;database&lt;/em&gt;&quot;</span>, <span class="st0">&quot;&lt;em&gt;mybackupname&lt;/em&gt;&quot;</span><span class="br0">&#41;</span>;</p>
<p>&nbsp;</p></div>
<p>Optional .htaccess-File:</p>
<div class="dean_ch" style="white-space: wrap;">&lt;Files ~ <span class="st0">&quot;.*(sql|gz|tar)&quot;</span>&gt;<br />
&nbsp; &nbsp; <span class="kw1">Deny</span> <span class="kw1">from</span> <span class="kw1">all</span><br />
&lt;/Files&gt;<br />
&nbsp;</div>
<p>
Then call the URL by cronjob:</p>
<div class="dean_ch" style="white-space: wrap;"><span class="re3">#!/bin/sh</span></p>
<p>
<span class="re2">remoteAddress=</span><span class="st0">&quot;&lt;em&gt;ftp://user@yourftp.com&lt;/em&gt; -p &lt;em&gt;password&lt;/em&gt;&quot;</span><br />
<span class="re2">localAddress=</span><span class="st0">&quot;&lt;em&gt;/home/Backup/mybackupname&lt;/em&gt;&quot;</span></p>
<p><span class="re2">timeThreshold=</span><span class="nu0">15</span><br />
<span class="re2">mirrordirOptions=</span><span class="st0">&quot;-v &#8211;keep-files &nbsp;&#8211;no-chown &#8211;no-chmod &nbsp;&#8211;num-backups 30 &#8211;mtime-threshold $timeThreshold &quot;</span></p>
<p><span class="kw3">echo</span> <span class="st0">&quot;Backup to $localAddress &#8212; `date +&quot;</span>%a, %C.%B %Y<span class="st0">&quot;`&quot;</span><br />
<span class="kw3">echo</span> -n <span class="st0">&quot;[`date +%H:%M:%S`] Killing runnung instances of mirrordir&#8230;&quot;</span></p>
<p>/usr/bin/<span class="kw2">killall</span> <span class="nu0">-9</span> mirrordir &amp;amp;<span class="nu0">2</span>&gt;<span class="nu0">1</span> &gt; /dev/null<br />
<span class="kw3">echo</span> <span class="st0">&quot;done.&quot;</span></p>
<p><span class="kw2">mkdir</span> -p <span class="re1">$localAddress</span>/htdocs &gt; /dev/null</p>
<p><span class="kw3">echo</span> &nbsp;<span class="st0">&quot;[`date +%H:%M:%S`] Backup of relevant databases&#8230;&quot;</span><br />
curl http://www.yourdomain.com/cgi-bin/backup/mysql.cgi<br />
<span class="kw3">echo</span> <span class="st0">&quot;done.&quot;</span></p>
<p><span class="kw3">echo</span> -n <span class="st0">&quot;[`date +%H:%M:%S`] Backup of remote FTP&#8230;&quot;</span><br />
/usr/bin/mirrordir <span class="re1">$mirrordirOptions</span> <span class="re1">$remoteAddress</span> <span class="re1">$localAddress</span>/htdocs<br />
<span class="kw3">echo</span> <span class="st0">&quot;done.&quot;</span></p>
<p><span class="kw3">echo</span> <span class="st0">&quot;[`date +%H:%M:%S`] Finished.&quot;</span><br />
&nbsp;</div>
<p>If you don&#8217;t have <em>mirrordir </em>or <em>curl </em>install it via <strong>aptitude install mirrordir curl on your </strong>debian box.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.evolution515.net/article/backup-remotely-via-perl/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>How to install Java and FOP on your linux box</title>
		<link>http://blog.evolution515.net/article/how-to-install-java-and-fop-on-your-linux-box/</link>
		<comments>http://blog.evolution515.net/article/how-to-install-java-and-fop-on-your-linux-box/#comments</comments>
		<pubDate>Sun, 20 May 2007 14:06:30 +0000</pubDate>
		<dc:creator>Blu:RayNe</dc:creator>
				<category><![CDATA[Allgemein]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[XML-Technologies]]></category>

		<guid isPermaLink="false">http://blog.evolution515.net/article/how-to-install-java-and-fop-on-your-linux-box/</guid>
		<description><![CDATA[Debian or other Linux-Distributions do not include Java by default, so you first have to install the JVM. This is done in Debian by downloading the JVM binary distriubtion&#160; from sun and then building a DEB-Package with the tools form java-package that you install by dpkg -i. 
But let&#8217;s do that step-by-step:
Installing JAVA on your [...]]]></description>
			<content:encoded><![CDATA[<p>Debian or other Linux-Distributions do not include Java by default, so you first have to install the JVM. This is done in Debian by downloading the <em>JVM binary distriubtion</em>&nbsp; from sun and then building a DEB-Package with the tools form <em>java-package</em> that you install by <em>dpkg -i</em>. </p>
<p><strong>But let&#8217;s do that step-by-step:</strong></p>
<h2>Installing JAVA on your Debian box</h2>
<ol>
<li>You&#8217;ll need the JavaVM, so get it at <a href="http://java.sun.com/ ">http://java.sun.com/</a> and search for the latest version. The filename should be something like <em>jdk-1_5_0-linux-i586.bin</em>.
</li>
<li>If not yet done, install the tools from java-package as root-user:<br />
    <strong>apt-get install java-package</p>
<p>    </strong></li>
<li>Then build a DEB-Package from the downloaded file. This can and should be done only as standard user (no root!)<br />
    <strong>fakeroot make-jpkg &lt;java-binary-package-name&gt;.bin</p>
<p>    </strong></li>
<li>If everything goes fine, you should see something like
<pre>The Debian package has been created in the currentdirectory. You can install the package as root (e.g.dpkg -i sun-j2sdk1.5_1.5.0+update00_i386.deb).</pre>
</li>
<li>
<p>Then just install the package by ther given command:<br />
    <strong>dpkg -i &lt;created-package-name&gt;.deb</strong></p>
</li>
<li>Check if it works by typing <strong>java -version</strong>. Following should be seen as standard and root user:
<pre>java version &quot;1.5.0&quot;Java(TM) 2 Runtime Environment, Standard Edition (build 1.5.0-b64)Java HotSpot(TM) Client VM (build 1.5.0-b64, mixed mode, sharing)</pre>
</li>
</ol>
<p></p>
<h2>Installing Apache FOP on your Debian box</h2>
<ol>
<li>Check if Java is installed and running.
</li>
<li>Get the latest binary from <a href="http://xmlgraphics.apache.org/fop/">http://xmlgraphics.apache.org/fop/</a> . The file should be named something like <em>fop-0.93-bin-jdk1.4.tar.gz</em>.
</li>
<li>Extract the contents of the archive by tar -zxvf &lt;fop-tarball&gt;. This should results in a directory called <em>fop-0.93</em>.
</li>
<li>Move the directory to /usr/local/lib<br />
    <strong>mv fop-0.93 /usr/local/lib<br />
    </strong>
    </li>
<li>Make a symlink for the directory without the version number<br />
    <strong>ln -s /usr/local/lib/fop-0.93 /usr/local/lib/fop<br />
    </strong>
    </li>
<li>Make a symlink for the command line wrapper script in your /usr/bin<br />
    ln -s <strong>/usr/local/lib/fop/fop /usr/bin/fop</strong>
    </li>
<li>
<p>Edit <strong> /usr/bin/fop </strong>and put following at the beginning of the file (and below the header comment section!):<br />
    <strong>export FOP_HOME=/usr/local/lib/fop</strong></p>
</li>
<li>Test the installation not only by typing <strong>fop -v,</strong> but instead by converting a fo file. This is necessary, because the command line wrapper is still very experimental:
<div class="dean_ch" style="white-space: wrap;"><span class="sc3"><span class="re1">&lt;?xml</span> <span class="re0">version</span>=<span class="st0">&quot;1.0&quot;</span> <span class="re0">encoding</span>=<span class="st0">&quot;ISO-8859-1&quot;</span><span class="re2">?&gt;</span></span><br />
<span class="sc3"><span class="re1">&lt;fo:root</span> <span class="re0">xmlns:fo</span>=<span class="st0">&quot;http://www.w3.org/1999/XSL/Format&quot;</span><span class="re2">&gt;</span></span></p>
<p><span class="sc3"><span class="re1">&lt;fo:layout-master-set<span class="re2">&gt;</span></span></span><br />
&nbsp; <span class="sc3"><span class="re1">&lt;fo:simple-page-master</span> <span class="re0">master-name</span>=<span class="st0">&quot;A4&quot;</span><span class="re2">&gt;</span></span><br />
&nbsp; <span class="sc3"><span class="re1">&lt;fo:region-body</span> <span class="re2">/&gt;</span></span><span class="sc3"><span class="re1">&lt;</span><br />
&nbsp; <span class="re1">&lt;/fo:simple-page-master<span class="re2">&gt;</span></span></span><br />
<span class="sc3"><span class="re1">&lt;/fo:layout-master-set<span class="re2">&gt;</span></span></span></p>
<p><span class="sc3"><span class="re1">&lt;fo:page-sequence</span> <span class="re0">master-reference</span>=<span class="st0">&quot;A4&quot;</span><span class="re2">&gt;</span></span><br />
&nbsp; <span class="sc3"><span class="re1">&lt;fo:flow</span> <span class="re0">flow-name</span>=<span class="st0">&quot;xsl-region-body&quot;</span><span class="re2">&gt;</span></span><br />
&nbsp; &nbsp; <span class="sc3"><span class="re1">&lt;fo:block<span class="re2">&gt;</span></span></span>Hello World!<span class="sc3"><span class="re1">&lt;/fo:block<span class="re2">&gt;</span></span></span><br />
&nbsp; <span class="sc3"><span class="re1">&lt;/fo:flow<span class="re2">&gt;</span></span></span><br />
<span class="sc3"><span class="re1">&lt;/fo:page-sequence<span class="re2">&gt;</span></span></span><br />
<span class="sc3"><span class="re1">&lt;/fo:root<span class="re2">&gt;</span></span></span></div>
</li>
</ol>
<h2>More help</h2>
<p><strong>You can get in-depth installation guides and instructions here:</strong></p>
<ul>
<li><a href="http://www.crazysquirrel.com/computing/debian/java.jspx">http://www.crazysquirrel.com/computing/debian/java.jspx</a></li>
<li><a href="http://www.sagehill.net/docbookxsl/InstallingAnFO.html">http://www.sagehill.net/docbookxsl/InstallingAnFO.html</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://blog.evolution515.net/article/how-to-install-java-and-fop-on-your-linux-box/feed/</wfw:commentRss>
		<slash:comments>11</slash:comments>
		</item>
		<item>
		<title>Hilfe! Postf&#228;cher sind weg!</title>
		<link>http://blog.evolution515.net/article/hilfe-postfacher-sind-weg/</link>
		<comments>http://blog.evolution515.net/article/hilfe-postfacher-sind-weg/#comments</comments>
		<pubDate>Tue, 15 May 2007 17:35:02 +0000</pubDate>
		<dc:creator>Blu:RayNe</dc:creator>
				<category><![CDATA[Allgemein]]></category>
		<category><![CDATA[Berufsalltag]]></category>
		<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://blog.evolution515.net/article/hilfe-postfacher-sind-weg/</guid>
		<description><![CDATA[Und hier wieder ein lustiger Witz f&#252;r alle Linux- und Unix-Nutzer (inkl. Mac OSX):
- &#8222;Du Markus, nur dass du bescheid wei&#223;t ab 20:00 sind die Postf&#228;cher vom Exchange-Server abgeschaltet?&#8220;
- &#8222;H&#228;?! Wieso das?! Server-Update?&#8220;
- &#8222;Nein, der Exchange-Server muss defragmentieren.&#8220;
]]></description>
			<content:encoded><![CDATA[<p>Und hier wieder ein lustiger Witz f&uuml;r alle Linux- und Unix-Nutzer (inkl. Mac OSX):</p>
<blockquote><p>- &bdquo;Du Markus, nur dass du bescheid wei&szlig;t ab 20:00 sind die Postf&auml;cher vom Exchange-Server abgeschaltet?&ldquo;</p>
<p>- &bdquo;H&auml;?! Wieso das?! Server-Update?&ldquo;</p>
<p>- &bdquo;Nein, der Exchange-Server muss defragmentieren.&ldquo;</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://blog.evolution515.net/article/hilfe-postfacher-sind-weg/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>STASI 2.0 &#8211; Sch&#228;uble tyrannisiert den LinuxTag 2007</title>
		<link>http://blog.evolution515.net/article/stasi-20/</link>
		<comments>http://blog.evolution515.net/article/stasi-20/#comments</comments>
		<pubDate>Wed, 09 May 2007 23:51:06 +0000</pubDate>
		<dc:creator>Blu:RayNe</dc:creator>
				<category><![CDATA[Allgemein]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Security]]></category>

		<guid isPermaLink="false">http://blog.evolution515.net/article/stasi-20/</guid>
		<description><![CDATA[Nach dieser News auf heise.de musste einfach gehandelt werden:




Betreff
[LinuxTag 2007] Mit Sch&#228;uble auf dem Programm gehe ich nicht hin!


To
orga@linuxtag.org


CC
schwobe@linuxtag.org


CC
projects@linuxtag.org





Hallo lieber Organisatoren und sonstige Beteiligte,
eigentlich h&#228;tte ich mich schon auf die Veranstaltung sehr gefreut, jedoch musste ich erahren dass Bundesinnenminister Sch&#228;uble die Schirmherrschaft an sich gerissen hat. Dieser Mensch verk&#246;rpert f&#252;r mich alles was Linux nicht [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Nach dieser <a href="http://www.heise.de/newsticker/meldung/89486/from/rss09">News</a> auf <a href="http://www.heise.de">heise.de</a> musste einfach gehandelt werden:</strong></p>
<blockquote><p><strong></p>
<table cellspacing="0" cellpadding="4" border="0" align="" summary="">
<tbody>
<tr>
<td style="padding-right: 0.6em;"><strong>Betreff</strong></td>
<td style="">[LinuxTag 2007] Mit Sch&auml;uble auf dem Programm gehe ich nicht hin!</td>
</tr>
<tr>
<td><strong>To</strong></td>
<td>orga@linuxtag.org</td>
</tr>
<tr>
<td><strong>CC</strong></td>
<td>schwobe@linuxtag.org</td>
</tr>
<tr>
<td><strong>CC</strong></td>
<td>projects@linuxtag.org</td>
</tr>
</tbody>
</table>
<p></strong><br />
<strong></strong><br />
<strong>Hallo lieber Organisatoren und sonstige Beteiligte,</strong></p>
<p>eigentlich h&auml;tte ich mich schon auf die Veranstaltung sehr gefreut, jedoch musste ich erahren dass Bundesinnenminister Sch&auml;uble die Schirmherrschaft an sich gerissen hat. Dieser Mensch verk&ouml;rpert f&uuml;r mich alles was Linux nicht ist, und er ist ein eindeutiger Grund warum ich eben meine Bahntickets storniert habe.</p>
<p>Linux verk&ouml;rpert f&uuml;r mich Kooperation, gegenseitige Hilfe und Freiheit. Dieser Mensch &ndash; nein ich h&auml;tte ich noch andere Worte f&uuml;r Ihn &ndash; ist das genaue Gegenteil von allem was Linux bedeutet. Unter Ihm sehe ich jemanden, der von Technik weniger Ahnung hat als mein Hund, jemanden der am liebsten seine eigene Privatarmee h&auml;tte und versucht mit seiner Politik das Volk zu kriminalisieren und der M&uuml;ndigkeit zu berauben. Ich finde diese Aussagen kaum &uuml;bertrieben, eher aber eine m&ouml;gliche Zukunftsvision, wenn diese Mensch noch l&auml;nger an der Macht bleibt.</p>
<p>Es ist eine Schande, dass gerade Ihr ihm ein &ouml;ffentliches Sprachrohr f&uuml;r seine Politik gebt, und es zul&auml;sst dass er viele durch seine falschen Ansichten beeinflu&szlig;t. Normalerweise haben Vertreter der Konzepte von OSS nicht viele M&ouml;glichkeiten &uuml;ber die Miss-St&auml;nde oder der Dissinformation &uuml;ber die Sicherheits-Politk entgegenzuwirken &ndash; und ihr gebt diesen Menschen gerade am LinuxTag ein Sprachrohr?! Bitte!</p>
<p><strong>Andere sehen es genau so wie ich, und ich werde mit mein bestes tun, die News &uuml;ber seine Herrschaft am LinuxTag weiter zu verbreiten. </strong><br />
<strong> </strong><br />
<strong> Deswegen ladet diesen Menschen bitte einfach aus! Wir brauchen Ihn nicht, und sicherlich w&auml;r mir ein oder mehrere Euro nicht zu Schade um die Veranstaltung mitzufinanzieren. Ich bin mir sicher es geht auch ohne diesen Unfried Sch&auml;uble!</strong><br />
<strong> </strong><br />
<strong> </strong>MfG<br />
.mg
</p></blockquote>
<p>
Und es geht weiter &ndash; <a href="http://www.stern.de/computer-technik/technik/:Bundesdatenschutzbeauftragter-Peter-Schaar-Jeder/588232.html?p=2&amp;nv=ct_cb">hier</a> ein Interview mit dem Bundesdatenschutzbeauftragten, dem anscheinend auch nur noch Sarkasmus in Anbetracht der Ohnmacht gegen&uuml;ber der freiwilligen Selbstzensur der Gesellschaft &uuml;brig bleibt.</p>
<p><strong>Mein Tipp: </strong>einfach mal auf volksverdummende Popul&auml;rmedien wie Rotations-Radiostationen und Privatfernsehen verzichten. Damit kann man sehr sch&ouml;n sehen, wie sich die Gesellschaft ver&auml;ndert.</p>
<p>Im Moment w&uuml;rde ich jedenfalls lieber in einem sauerstoff-leeren Raum ersticken, statt hier weiter auf Erden zu sein. Nein, Vampire und andere Unsterbliche gab es wirklich &ndash; sie haben sich nur wegen Frust an der Gesellschaft selbst umgebracht<em> &lt;/Sarkasmus&gt;</em></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.evolution515.net/article/stasi-20/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>

