<?xml version="1.0" encoding="utf-8" ?>

<rss version="2.0" 
   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
   xmlns:admin="http://webns.net/mvcb/"
   xmlns:dc="http://purl.org/dc/elements/1.1/"
   xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
   xmlns:wfw="http://wellformedweb.org/CommentAPI/"
   xmlns:content="http://purl.org/rss/1.0/modules/content/"
   >
<channel>
    
    <title>Dirks Logbuch</title>
    <link>http://www.deimeke.net/dirk/blog/</link>
    <description>Die Chronik des schleichenden Wahnsinns ...</description>
    <dc:language>de</dc:language>
    <generator>Serendipity 1.6.2 - http://www.s9y.org/</generator>
    
    

<item>
    <title>Serendipity 1.6.2 ...</title>
    <link>http://www.deimeke.net/dirk/blog/index.php?/archives/3009-Serendipity-1.6.2-....html</link>
            <category>serendipity</category>
    
    <comments>http://www.deimeke.net/dirk/blog/index.php?/archives/3009-Serendipity-1.6.2-....html#comments</comments>
    <wfw:comment>http://www.deimeke.net/dirk/blog/wfwcomment.php?cid=3009</wfw:comment>

    <slash:comments>0</slash:comments>
    <wfw:commentRss>http://www.deimeke.net/dirk/blog/rss.php?version=2.0&amp;type=comments&amp;cid=3009</wfw:commentRss>
    

    <author>nospam@example.com (Dirk Deimeke)</author>
    <content:encoded>
    &lt;p class=&quot;whiteline&quot;&gt;Im besten Blog der Welt wurde eine kleine Sicherheitslücke gefunden, die mit dem Update auf Version 1.6.2 behoben wird.
&lt;/p&gt;&lt;p class=&quot;whiteline&quot;&gt;&lt;a href=&quot;http://blog.s9y.org/archives/241-Serendipity-1.6.2-released.html&quot; title=&quot;Serendipity 1.6.2 released  - Serendipity&quot;&gt;Hier&lt;/a&gt; der passende Blog-Eintrag.
&lt;/p&gt;&lt;p class=&quot;break&quot;&gt;Update wie immer problemlos.&lt;/p&gt; 
    </content:encoded>

    <pubDate>Wed, 16 May 2012 14:49:34 +0200</pubDate>
    <guid isPermaLink="false">http://www.deimeke.net/dirk/blog/index.php?/archives/3009-guid.html</guid>
    <category>serendipity</category>

</item>
<item>
    <title>Brace Expansion ...</title>
    <link>http://www.deimeke.net/dirk/blog/index.php?/archives/3008-Brace-Expansion-....html</link>
            <category>computer</category>
    
    <comments>http://www.deimeke.net/dirk/blog/index.php?/archives/3008-Brace-Expansion-....html#comments</comments>
    <wfw:comment>http://www.deimeke.net/dirk/blog/wfwcomment.php?cid=3008</wfw:comment>

    <slash:comments>10</slash:comments>
    <wfw:commentRss>http://www.deimeke.net/dirk/blog/rss.php?version=2.0&amp;type=comments&amp;cid=3008</wfw:commentRss>
    

    <author>nospam@example.com (Dirk Deimeke)</author>
    <content:encoded>
    &lt;p class=&quot;whiteline&quot;&gt;Viele kennen die &lt;a href=&quot;https://www.gnu.org/software/bash/manual/html_node/Brace-Expansion.html#Brace-Expansion&quot; title=&quot;Brace Expansion - Bash Reference Manual&quot;&gt;Brace Expansion&lt;/a&gt;, einen Mechanismus von Shells, insbesondere der &lt;a href=&quot;https://www.gnu.org/software/bash/&quot; title=&quot;Bash- GNU Project - Free Software Foundation&quot;&gt;GNU Bash&lt;/a&gt; gar nicht. 
&lt;/p&gt;&lt;p class=&quot;whiteline&quot;&gt;Brace Expansion lässt sich nicht so leicht übersetzen, vielleicht am besten mit Klammererweiterung.
&lt;/p&gt;&lt;p class=&quot;whiteline&quot;&gt;&lt;code&gt;{a,b,d}&lt;/code&gt; erzeugt &lt;code&gt;a b d&lt;/code&gt;, dieser Term wird dort ersetzt, wo er eingesetzt wird &lt;code&gt;ab{a,b,d}&lt;/code&gt; ergibt &lt;code&gt;aba abb abd&lt;/code&gt;. &lt;code&gt;{1..10}&lt;/code&gt; macht &lt;code&gt;1 2 3 4 5 6 7 8 9 10&lt;/code&gt;, &lt;code&gt;{01..04}&lt;/code&gt; entsprechend mit führenden Nullen &lt;code&gt;01 02 03 04&lt;/code&gt;. Das geht auch mit Inkrementen &lt;code&gt;{1..9..2}&lt;/code&gt; entspricht den ungeraden Zahlen &lt;code&gt;1 3 5 7 9&lt;/code&gt; oder bei Buchstaben &lt;code&gt;{a..f}&lt;/code&gt; macht &lt;code&gt;a b c d e f&lt;/code&gt; und &lt;code&gt;{a..f..2}&lt;/code&gt; ergibt &lt;code&gt;a c e&lt;/code&gt;. Das ganze ist verschachtelbar &lt;code&gt;{a{1,2},c,e}&lt;/code&gt; erzeugt &lt;code&gt;a1 a2 c e&lt;/code&gt;.
&lt;/p&gt;&lt;p class=&quot;whiteline&quot;&gt;Manche nutzen es, um einfach eine Reihe an Verzeichnissen zu erstellen.
&lt;/p&gt;&lt;p class=&quot;whiteline&quot;&gt;&lt;div class=&quot;bash geshi&quot; style=&quot;text-align: left&quot;&gt;&lt;span style=&quot;color: #c20cb9; font-weight: bold;&quot;&gt;mkdir&lt;/span&gt; M&lt;span style=&quot;color: #7a0874; font-weight: bold;&quot;&gt;&amp;#123;&lt;/span&gt;e,a&lt;span style=&quot;color: #7a0874; font-weight: bold;&quot;&gt;&amp;#125;&lt;/span&gt;&lt;span style=&quot;color: #7a0874; font-weight: bold;&quot;&gt;&amp;#123;&lt;/span&gt;i,y&lt;span style=&quot;color: #7a0874; font-weight: bold;&quot;&gt;&amp;#125;&lt;/span&gt;er&lt;br /&gt;&lt;span style=&quot;color: #c20cb9; font-weight: bold;&quot;&gt;mkdir&lt;/span&gt; &lt;span style=&quot;color: #7a0874; font-weight: bold;&quot;&gt;cd&lt;/span&gt;&lt;span style=&quot;color: #7a0874; font-weight: bold;&quot;&gt;&amp;#123;&lt;/span&gt;01..&lt;span style=&quot;color: #000000;&quot;&gt;10&lt;/span&gt;&lt;span style=&quot;color: #7a0874; font-weight: bold;&quot;&gt;&amp;#125;&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;color: #c20cb9; font-weight: bold;&quot;&gt;mkdir&lt;/span&gt; &lt;span style=&quot;color: #000000; font-weight: bold;&quot;&gt;/&lt;/span&gt;home&lt;span style=&quot;color: #000000; font-weight: bold;&quot;&gt;/&lt;/span&gt;&lt;span style=&quot;color: #7a0874; font-weight: bold;&quot;&gt;&amp;#123;&lt;/span&gt;dirk,jupp,hans&lt;span style=&quot;color: #7a0874; font-weight: bold;&quot;&gt;&amp;#125;&lt;/span&gt;&lt;span style=&quot;color: #000000; font-weight: bold;&quot;&gt;/&lt;/span&gt;&lt;span style=&quot;color: #7a0874; font-weight: bold;&quot;&gt;&amp;#123;&lt;/span&gt;.ssh,vorlagen,arbeit&lt;span style=&quot;color: #7a0874; font-weight: bold;&quot;&gt;&amp;#125;&lt;/span&gt;&lt;/div&gt;
&lt;/p&gt;&lt;p class=&quot;whiteline&quot;&gt;Aber es gibt auch eine ganz einfache Anwendung, die jeden Tag hilft, Erstellung von Backup-Dateien:
&lt;/p&gt;&lt;p class=&quot;break&quot;&gt;&lt;div class=&quot;bash geshi&quot; style=&quot;text-align: left&quot;&gt;&lt;span style=&quot;color: #c20cb9; font-weight: bold;&quot;&gt;cp&lt;/span&gt; datei&lt;span style=&quot;color: #7a0874; font-weight: bold;&quot;&gt;&amp;#123;&lt;/span&gt;,.bak&lt;span style=&quot;color: #7a0874; font-weight: bold;&quot;&gt;&amp;#125;&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;color: #c20cb9; font-weight: bold;&quot;&gt;cp&lt;/span&gt; datei&lt;span style=&quot;color: #7a0874; font-weight: bold;&quot;&gt;&amp;#123;&lt;/span&gt;,von-heute&lt;span style=&quot;color: #7a0874; font-weight: bold;&quot;&gt;&amp;#125;&lt;/span&gt;.txt&lt;/div&gt;&lt;/p&gt; 
    </content:encoded>

    <pubDate>Wed, 16 May 2012 07:42:00 +0200</pubDate>
    <guid isPermaLink="false">http://www.deimeke.net/dirk/blog/index.php?/archives/3008-guid.html</guid>
    <category>bash</category>
<category>computer</category>

</item>
<item>
    <title>Star Wars Main Title Theme</title>
    <link>http://www.deimeke.net/dirk/blog/index.php?/archives/3007-Star-Wars-Main-Title-Theme.html</link>
            <category>fundstücke</category>
    
    <comments>http://www.deimeke.net/dirk/blog/index.php?/archives/3007-Star-Wars-Main-Title-Theme.html#comments</comments>
    <wfw:comment>http://www.deimeke.net/dirk/blog/wfwcomment.php?cid=3007</wfw:comment>

    <slash:comments>0</slash:comments>
    <wfw:commentRss>http://www.deimeke.net/dirk/blog/rss.php?version=2.0&amp;type=comments&amp;cid=3007</wfw:commentRss>
    

    <author>nospam@example.com (Dirk Deimeke)</author>
    <content:encoded>
    &lt;p class=&quot;whiteline&quot;&gt;Vocal version ...
&lt;/p&gt;&lt;p class=&quot;break&quot;&gt;&lt;iframe width=&quot;560&quot; height=&quot;315&quot; src=&quot;http://www.youtube.com/embed/pG9-Ijbk3_8&quot; frameborder=&quot;0&quot; allowfullscreen&gt;&lt;/iframe&gt;&lt;/p&gt; 
    </content:encoded>

    <pubDate>Tue, 15 May 2012 18:30:37 +0200</pubDate>
    <guid isPermaLink="false">http://www.deimeke.net/dirk/blog/index.php?/archives/3007-guid.html</guid>
    <category>fundstücke</category>

</item>
<item>
    <title>Ciao Tyson ...</title>
    <link>http://www.deimeke.net/dirk/blog/index.php?/archives/3006-Ciao-Tyson-....html</link>
            <category>bao&amp;tyson</category>
    
    <comments>http://www.deimeke.net/dirk/blog/index.php?/archives/3006-Ciao-Tyson-....html#comments</comments>
    <wfw:comment>http://www.deimeke.net/dirk/blog/wfwcomment.php?cid=3006</wfw:comment>

    <slash:comments>0</slash:comments>
    <wfw:commentRss>http://www.deimeke.net/dirk/blog/rss.php?version=2.0&amp;type=comments&amp;cid=3006</wfw:commentRss>
    

    <author>nospam@example.com (Dirk Deimeke)</author>
    <content:encoded>
    &lt;p class=&quot;whiteline&quot;&gt;Euer &lt;a href=&quot;http://www.deimeke.net/dirk/blog/index.php?/archives/3005-Daumen-druecken-fuer-Tyson-....html&quot; title=&quot;Daumen drücken für Tyson ... | Dirks Logbuch&quot;&gt;Daumen drücken&lt;/a&gt; hat leider nicht geholfen. Danke für alle Anteilnahme.
&lt;/p&gt;&lt;p class=&quot;whiteline&quot;&gt;&lt;a href=&quot;http://sandhaut.net/blog/index.php?/archives/276-Und-leise-sag-ich-Servus....html&quot; title=&quot;Und leise sag ich Servus... - sandhaut.net/blog/&quot;&gt;Heute Morgen ist Tyson gestorben&lt;/a&gt; (bitte dort kommentieren, wenn Ihr mögt).
&lt;/p&gt;&lt;p class=&quot;break&quot;&gt;Wir hatten eine tolle Zeit und er fehlt uns schon jetzt.&lt;/p&gt; 
    </content:encoded>

    <pubDate>Thu, 10 May 2012 12:55:38 +0200</pubDate>
    <guid isPermaLink="false">http://www.deimeke.net/dirk/blog/index.php?/archives/3006-guid.html</guid>
    <category>bao&amp;tyson</category>

</item>
<item>
    <title>Daumen drücken für Tyson ...</title>
    <link>http://www.deimeke.net/dirk/blog/index.php?/archives/3005-Daumen-druecken-fuer-Tyson-....html</link>
            <category>bao&amp;tyson</category>
    
    <comments>http://www.deimeke.net/dirk/blog/index.php?/archives/3005-Daumen-druecken-fuer-Tyson-....html#comments</comments>
    <wfw:comment>http://www.deimeke.net/dirk/blog/wfwcomment.php?cid=3005</wfw:comment>

    <slash:comments>20</slash:comments>
    <wfw:commentRss>http://www.deimeke.net/dirk/blog/rss.php?version=2.0&amp;type=comments&amp;cid=3005</wfw:commentRss>
    

    <author>nospam@example.com (Dirk Deimeke)</author>
    <content:encoded>
    &lt;p class=&quot;whiteline&quot;&gt;Wir brauchen mal Eure Hilfe. &lt;a href=&quot;http://sandhaut.net/blog/uploads/private01.jpg&quot; title=&quot;&quot;&gt;Tyson&lt;/a&gt; mussten wir heute mit Verdacht auf Darmkrebs heute in der Tierklinik lassen. Genaueres und wie und ob es weitergeht erfahren wir Morgen.
&lt;/p&gt;&lt;p class=&quot;whiteline&quot;&gt;Drückt bitte mal die Daumen.
&lt;/p&gt;&lt;p class=&quot;break&quot;&gt;Danke!&lt;/p&gt; 
    </content:encoded>

    <pubDate>Wed, 09 May 2012 20:30:55 +0200</pubDate>
    <guid isPermaLink="false">http://www.deimeke.net/dirk/blog/index.php?/archives/3005-guid.html</guid>
    <category>bao&amp;tyson</category>

</item>
<item>
    <title>Serendipity 1.6.1 ...</title>
    <link>http://www.deimeke.net/dirk/blog/index.php?/archives/3004-Serendipity-1.6.1-....html</link>
            <category>serendipity</category>
    
    <comments>http://www.deimeke.net/dirk/blog/index.php?/archives/3004-Serendipity-1.6.1-....html#comments</comments>
    <wfw:comment>http://www.deimeke.net/dirk/blog/wfwcomment.php?cid=3004</wfw:comment>

    <slash:comments>4</slash:comments>
    <wfw:commentRss>http://www.deimeke.net/dirk/blog/rss.php?version=2.0&amp;type=comments&amp;cid=3004</wfw:commentRss>
    

    <author>nospam@example.com (Dirk Deimeke)</author>
    <content:encoded>
    &lt;p class=&quot;whiteline&quot;&gt;Ein Update des besten Blogs der Welt auf Version 1.6.1 steht &lt;a href=&quot;http://blog.s9y.org/archives/240-Serendipity-1.6.1-released.html&quot; title=&quot;Serendipity 1.6.1 released  - Serendipity&quot;&gt;bereit&lt;/a&gt;. Das Update wird strengstens empfohlen, da es zwei kleinere &quot;unkritische&quot; Sicherheitslücken schliesst. Da muss ich heute Abend mal ran.
&lt;/p&gt;&lt;p class=&quot;break&quot;&gt;Update vermutlich wie immer durch überkopieren und aufrufen der Blog-URL.&lt;/p&gt; 
    </content:encoded>

    <pubDate>Tue, 08 May 2012 10:30:26 +0200</pubDate>
    <guid isPermaLink="false">http://www.deimeke.net/dirk/blog/index.php?/archives/3004-guid.html</guid>
    <category>serendipity</category>

</item>
<item>
    <title>Audio unter Linux ...</title>
    <link>http://www.deimeke.net/dirk/blog/index.php?/archives/3003-Audio-unter-Linux-....html</link>
            <category>podcast</category>
    
    <comments>http://www.deimeke.net/dirk/blog/index.php?/archives/3003-Audio-unter-Linux-....html#comments</comments>
    <wfw:comment>http://www.deimeke.net/dirk/blog/wfwcomment.php?cid=3003</wfw:comment>

    <slash:comments>2</slash:comments>
    <wfw:commentRss>http://www.deimeke.net/dirk/blog/rss.php?version=2.0&amp;type=comments&amp;cid=3003</wfw:commentRss>
    

    <author>nospam@example.com (Dirk Deimeke)</author>
    <content:encoded>
    &lt;p class=&quot;break&quot;&gt;Die &lt;a href=&quot;http://datenkanal.org/archives/21-DK6-Audio-unter-Linux.html&quot; title=&quot;DK6: Audio unter Linux  - Datenkanal&quot;&gt;sechste Folge des Datenkanals&lt;/a&gt; beschäftigt sich mit Audio unter Linux und ist meines Erachtens nach ein Volltreffer und damit eine echte Empfehlung. Jens Kubieziel und Jörg Sommer haben Adrian Knoth zu Gast, der eine Menge zu Audio unter Linux, verschiedene Soundsysteme, Audiobearbeitung und Latenzen zu erzählen weiss.&lt;/p&gt; 
    </content:encoded>

    <pubDate>Tue, 08 May 2012 08:17:48 +0200</pubDate>
    <guid isPermaLink="false">http://www.deimeke.net/dirk/blog/index.php?/archives/3003-guid.html</guid>
    <category>linux</category>
<category>podcast</category>

</item>
<item>
    <title>Space Shuttle Launch ...</title>
    <link>http://www.deimeke.net/dirk/blog/index.php?/archives/3002-Space-Shuttle-Launch-....html</link>
            <category>fundstücke</category>
    
    <comments>http://www.deimeke.net/dirk/blog/index.php?/archives/3002-Space-Shuttle-Launch-....html#comments</comments>
    <wfw:comment>http://www.deimeke.net/dirk/blog/wfwcomment.php?cid=3002</wfw:comment>

    <slash:comments>2</slash:comments>
    <wfw:commentRss>http://www.deimeke.net/dirk/blog/rss.php?version=2.0&amp;type=comments&amp;cid=3002</wfw:commentRss>
    

    <author>nospam@example.com (Dirk Deimeke)</author>
    <content:encoded>
    &lt;p class=&quot;whiteline&quot;&gt;Wow, Sound auf laut stellen und - wenn Ihr könnt - im Vollbild bei höchster Auflösung anschauen.
&lt;/p&gt;&lt;p class=&quot;whiteline&quot;&gt;Das ist sehr beeindruckend.
&lt;/p&gt;&lt;p class=&quot;whiteline&quot;&gt;&lt;iframe width=&quot;560&quot; height=&quot;315&quot; src=&quot;http://www.youtube.com/embed/OnoNITE-CLc&quot; frameborder=&quot;0&quot; allowfullscreen&gt;&lt;/iframe&gt;
&lt;/p&gt;&lt;p class=&quot;break&quot;&gt;via &lt;a href=&quot;http://www.golem.de/news/video-youtube-nutzer-macht-das-wohnzimmer-zum-weltraumbahnhof-1205-91606.html&quot; title=&quot;Video: Youtube-Nutzer macht das Wohnzimmer zum Weltraumbahnhof - Golem.de&quot;&gt;Golem&lt;/a&gt;&lt;/p&gt; 
    </content:encoded>

    <pubDate>Mon, 07 May 2012 12:58:23 +0200</pubDate>
    <guid isPermaLink="false">http://www.deimeke.net/dirk/blog/index.php?/archives/3002-guid.html</guid>
    <category>fundstücke</category>

</item>
<item>
    <title>Einkaufen bei Amazon ...</title>
    <link>http://www.deimeke.net/dirk/blog/index.php?/archives/3001-Einkaufen-bei-Amazon-....html</link>
            <category>allgemein</category>
    
    <comments>http://www.deimeke.net/dirk/blog/index.php?/archives/3001-Einkaufen-bei-Amazon-....html#comments</comments>
    <wfw:comment>http://www.deimeke.net/dirk/blog/wfwcomment.php?cid=3001</wfw:comment>

    <slash:comments>14</slash:comments>
    <wfw:commentRss>http://www.deimeke.net/dirk/blog/rss.php?version=2.0&amp;type=comments&amp;cid=3001</wfw:commentRss>
    

    <author>nospam@example.com (Dirk Deimeke)</author>
    <content:encoded>
    &lt;p class=&quot;whiteline&quot;&gt;Einkaufen bei Amazon ist für uns - seit wir in der Schweiz wohnen - sehr eingeschränkt, da Amazon die meisten Technik-Artikel und viele &quot;Subunternehmer&quot; nicht in die Schweiz liefern. Gerade sehe ich aber, dass man bei Amazon seit neuestem &lt;a href=&quot;http://www.amazon.de/gp/help/customer/display.html/ref=help_search_1-1?ie=UTF8&amp;amp;nodeId=200787040&amp;amp;qid=1336378935&amp;amp;sr=1-1&quot; title=&quot;&quot;&gt;Abholstationen&lt;/a&gt; auswählen kann, an die Lieferungen gehen können.
&lt;/p&gt;&lt;p class=&quot;break&quot;&gt;Das gute daran für uns ist, dass wir eine Abholstation dort auswählen können, wo wir &quot;mal&quot; hinfahren und nicht auf eine bestimmte festgelegt sind. Wir sind nicht mehr häufig in DE.&lt;/p&gt; 
    </content:encoded>

    <pubDate>Mon, 07 May 2012 10:23:47 +0200</pubDate>
    <guid isPermaLink="false">http://www.deimeke.net/dirk/blog/index.php?/archives/3001-guid.html</guid>
    <category>allgemein</category>

</item>
<item>
    <title>May, 4th 2012 ...</title>
    <link>http://www.deimeke.net/dirk/blog/index.php?/archives/3000-May,-4th-2012-....html</link>
            <category>allgemein</category>
    
    <comments>http://www.deimeke.net/dirk/blog/index.php?/archives/3000-May,-4th-2012-....html#comments</comments>
    <wfw:comment>http://www.deimeke.net/dirk/blog/wfwcomment.php?cid=3000</wfw:comment>

    <slash:comments>10</slash:comments>
    <wfw:commentRss>http://www.deimeke.net/dirk/blog/rss.php?version=2.0&amp;type=comments&amp;cid=3000</wfw:commentRss>
    

    <author>nospam@example.com (Dirk Deimeke)</author>
    <content:encoded>
    &lt;p class=&quot;whiteline&quot;&gt;Wie schon geschrieben, heute ist &lt;a href=&quot;https://de.wikipedia.org/wiki/Star_Wars#Star_Wars_Day&quot; title=&quot;Star Wars – Wikipedia&quot;&gt;Star Wars Day&lt;/a&gt; und ich gebe heute in der Firma meinen Farewell-&lt;a href=&quot;https://de.wikipedia.org/wiki/Apero#Ap.C3.A9ro_in_der_Schweiz&quot; title=&quot;Aperitif – Wikipedia&quot;&gt;Apéro&lt;/a&gt;. Dazu hat &lt;a href=&quot;http://silvia.deimeke.net/&quot; title=&quot;Silvias Blogbuch &quot;&gt;die beste Ehefrau von allen&lt;/a&gt; - ja, Ihr dürft jetzt neidisch sein - einen Kuchen gebacken.
&lt;/p&gt;&lt;p class=&quot;whiteline&quot;&gt;Danke, mein Schatz, ich liebe Dich!
&lt;/p&gt;&lt;p class=&quot;break&quot;&gt;&lt;!-- s9ymdb:6471 --&gt;&lt;img class=&quot;serendipity_image_center&quot; width=&quot;560&quot; height=&quot;420&quot; src=&quot;http://www.deimeke.net/dirk/blog/uploads/IMG-20120504-00154.jpg&quot; alt=&quot;&quot;  /&gt;&lt;/p&gt; 
    </content:encoded>

    <pubDate>Fri, 04 May 2012 14:44:00 +0200</pubDate>
    <guid isPermaLink="false">http://www.deimeke.net/dirk/blog/index.php?/archives/3000-guid.html</guid>
    <category>allgemein</category>

</item>
<item>
    <title>Kurzer Zwischenbericht zum DS212+ ...</title>
    <link>http://www.deimeke.net/dirk/blog/index.php?/archives/2999-Kurzer-Zwischenbericht-zum-DS212+-....html</link>
            <category>technik</category>
    
    <comments>http://www.deimeke.net/dirk/blog/index.php?/archives/2999-Kurzer-Zwischenbericht-zum-DS212+-....html#comments</comments>
    <wfw:comment>http://www.deimeke.net/dirk/blog/wfwcomment.php?cid=2999</wfw:comment>

    <slash:comments>4</slash:comments>
    <wfw:commentRss>http://www.deimeke.net/dirk/blog/rss.php?version=2.0&amp;type=comments&amp;cid=2999</wfw:commentRss>
    

    <author>nospam@example.com (Dirk Deimeke)</author>
    <content:encoded>
    &lt;p class=&quot;whiteline&quot;&gt;Von dem &lt;a href=&quot;http://www.deimeke.net/dirk/blog/index.php?/archives/2991-Synology-DS212+-....html&quot; title=&quot;Synology DS212+ ... | Dirks Logbuch&quot;&gt;neuen Spielzeug&lt;/a&gt; bin ich sehr angetan, auch wenn ich noch nicht alles ausprobieren konnte, was ich machen wollte, so kann ich von zwei - wie ich finde - guten Features erzählen.
&lt;/p&gt;&lt;p class=&quot;whiteline&quot;&gt;Der Trümmer steht bei mir auf dem Schreibtisch und ist schon einmal sehr leise, wenn es anders wäre, hätte er nicht den &lt;a href=&quot;http://www.heise.de/ct/04/01/003/&quot; title=&quot;&quot;&gt;WAF&lt;/a&gt; geschafft. Im Grossen und Ganzen gibt es drei Betriebszustände (Stromverbrauch aus den technischen Daten): Eingeschaltet (18.7 W), Ruhezustand (Standby, 7.9 W) und &lt;a href=&quot;https://de.wikipedia.org/wiki/Wake_On_LAN&quot; title=&quot;Wake On LAN – Wikipedia&quot;&gt;Wake-on-LAN&lt;/a&gt; (0.8 W). Das NAS schaltet selbstätig (und konfigurierbar!) von einem Zustand in den Nächsten, nach 20 Minuten Nichtbenutzung in den Standby und nach einer weiteren Spanne in den Wake-on-LAN-Modus. 
&lt;/p&gt;&lt;p class=&quot;whiteline&quot;&gt;Der Weg zurück in den Betrieb geht nur &quot;halb automatisch&quot;, es gibt Software, die das &quot;magische&quot; Wake-on-LAN-Paket versendet, auf die das Gerät wieder &quot;erwacht&quot;, was etwa zwei Minuten (nicht nachgemessen) dauert. Ich habe die FritzBox so konfiguriert, dass sie bei Zugriff auf das NAS es auch wieder aufwachen lässt, das gilt natürlich nur für Verbindungen, die über die FritzBox laufen, ansonsten tun entsprechende Kommandozeilenprogramme (ja, ich weiss, es gibt auch grafische) klaglos ihren Dienst. Ein einfacher Zugriff reicht, um vom Standby-Modus in den Betrieb zu wechseln, das geht in rund 10 Sekunden (nachgemessen).
&lt;/p&gt;&lt;p class=&quot;whiteline&quot;&gt;Zusammen mit &lt;a href=&quot;http://adminstories.de/index.php?/archives/106-Automount.html&quot; title=&quot;Automount  - adminstories&quot;&gt;AutoFS&lt;/a&gt; läuft &quot;fast&quot; alles automatisch, manchmal braucht es noch einen Anstoss.
&lt;/p&gt;&lt;p class=&quot;whiteline&quot;&gt;Das GUI ist gut, aber gewöhnungsbedürftig, es dauert seine Zeit, bis man die vielfältigen Funktionen findet. Das liegt aber eher daran, dass man &quot;jeden Scheiss&quot; einstellen kann. &lt;img src=&quot;http://www.deimeke.net/dirk/blog/templates/default/img/emoticons/smile.png&quot; alt=&quot;:-)&quot; style=&quot;display: inline; vertical-align: bottom;&quot; class=&quot;emoticon&quot; /&gt;
&lt;/p&gt;&lt;p class=&quot;whiteline&quot;&gt;Neben dem Kopieren auf die Platte, dazu später mal mehr, habe ich mir noch die &quot;Download Station&quot; angesehen und die funktioniert richtig gut. Sie funktioniert ähnlich wie die Programme &lt;a href=&quot;http://projects.gnome.org/gwget/&quot; title=&quot;GWGET - Download Manager for GNOME2&quot;&gt;GWGET&lt;/a&gt; oder &lt;a href=&quot;http://www.kde.org/applications/internet/kget/&quot; title=&quot;KDE - KGet - Download Manager&quot;&gt;KGet&lt;/a&gt;, einfach eine URL hineinkopieren und die Daten werden in einen bestimmten Ordner heruntergeladen. Das lohnt sich insbesondere für &lt;a href=&quot;https://de.wikipedia.org/wiki/BitTorrent&quot; title=&quot;BitTorrent – Wikipedia&quot;&gt;BitTorrent&lt;/a&gt; oder grosse &quot;normale&quot; Downloads, da man getrost den Rechner nachts ausschalten kann, das NAS schaltet sich selber ab, wenn es fertig ist. BitTorrent ist dann auch gleich so konfigurierbar, dass es bis zu einem bestimmten Up-/Download-Verhältnis weiter im Netz bleibt. Ein schönes Feature ist, dass man eine Torrent-Datei einfach in den Ordner werfen kann (ohne über das GUI zu gehen) und die Box fängt selbsttätig mit dem Download an.
&lt;/p&gt;&lt;p class=&quot;break&quot;&gt;Was ich bis jetzt gesehen habe, ist gut bis sehr gut. Ich werde mir im jeden Fall noch den Umgang mit Multimedia-Dateien anschauen, wie die Photo-Geschichte funktioniert und der eingebaute Web- und Datenbankserver interessiert mich ebenfalls. Aber das geht nur &quot;nach und nach&quot;, ich habe andere - wichtigere - Dinge zu erledigen.&lt;/p&gt; 
    </content:encoded>

    <pubDate>Fri, 04 May 2012 09:39:00 +0200</pubDate>
    <guid isPermaLink="false">http://www.deimeke.net/dirk/blog/index.php?/archives/2999-guid.html</guid>
    <category>technik</category>

</item>
<item>
    <title>Drei Jahre DeimHart ...</title>
    <link>http://www.deimeke.net/dirk/blog/index.php?/archives/2998-Drei-Jahre-DeimHart-....html</link>
            <category>deimhart</category>
    
    <comments>http://www.deimeke.net/dirk/blog/index.php?/archives/2998-Drei-Jahre-DeimHart-....html#comments</comments>
    <wfw:comment>http://www.deimeke.net/dirk/blog/wfwcomment.php?cid=2998</wfw:comment>

    <slash:comments>12</slash:comments>
    <wfw:commentRss>http://www.deimeke.net/dirk/blog/rss.php?version=2.0&amp;type=comments&amp;cid=2998</wfw:commentRss>
    

    <author>nospam@example.com (Dirk Deimeke)</author>
    <content:encoded>
    &lt;p class=&quot;whiteline&quot;&gt;So, am heutigen Tag wird &lt;a href=&quot;http://deimhart.net/&quot; title=&quot;DeimHart &quot;&gt;DeimHart&lt;/a&gt;, der Podcast von &lt;a href=&quot;http://tuxhart.ch/&quot; title=&quot;tuxhart - Roman Hanhart&quot;&gt;Roman&lt;/a&gt; und &lt;a href=&quot;http://d5e.org/&quot; title=&quot;Dirk Deimeke&quot;&gt;mir&lt;/a&gt;, drei Jahre alt. In der Zeit ist technisch, inhaltlich und persönlich sehr viel passiert. Mein Dank gilt allen Hörern für die Begleitung und Motivation.
&lt;/p&gt;&lt;p class=&quot;break&quot;&gt;Und ja, heute ist &lt;a href=&quot;https://de.wikipedia.org/wiki/Star_Wars#Star_Wars_Day&quot; title=&quot;Star Wars – Wikipedia&quot;&gt;Star Wars Day&lt;/a&gt;, in dem Sinne: &quot;May the force be with you!&quot;.&lt;/p&gt; 
    </content:encoded>

    <pubDate>Fri, 04 May 2012 08:44:35 +0200</pubDate>
    <guid isPermaLink="false">http://www.deimeke.net/dirk/blog/index.php?/archives/2998-guid.html</guid>
    <category>deimhart</category>

</item>
<item>
    <title>The The Impotence of Proofreading</title>
    <link>http://www.deimeke.net/dirk/blog/index.php?/archives/2997-The-The-Impotence-of-Proofreading.html</link>
            <category>fundstücke</category>
    
    <comments>http://www.deimeke.net/dirk/blog/index.php?/archives/2997-The-The-Impotence-of-Proofreading.html#comments</comments>
    <wfw:comment>http://www.deimeke.net/dirk/blog/wfwcomment.php?cid=2997</wfw:comment>

    <slash:comments>0</slash:comments>
    <wfw:commentRss>http://www.deimeke.net/dirk/blog/rss.php?version=2.0&amp;type=comments&amp;cid=2997</wfw:commentRss>
    

    <author>nospam@example.com (Dirk Deimeke)</author>
    <content:encoded>
    &lt;p class=&quot;whiteline&quot;&gt;&lt;strong&gt;LOL!&lt;/strong&gt;
&lt;/p&gt;&lt;p class=&quot;whiteline&quot;&gt;&lt;iframe width=&quot;480&quot; height=&quot;360&quot; src=&quot;http://www.youtube.com/embed/OonDPGwAyfQ&quot; frameborder=&quot;0&quot; allowfullscreen&gt;&lt;/iframe&gt;
&lt;/p&gt;&lt;p class=&quot;break&quot;&gt;Thanks for sharing, &lt;a href=&quot;http://f.ederi.co/&quot; title=&quot;:: FEDERICO HERNANDEZ :: http://f.ederi.co :::&quot;&gt;Federico&lt;/a&gt;.&lt;/p&gt; 
    </content:encoded>

    <pubDate>Thu, 03 May 2012 10:27:15 +0200</pubDate>
    <guid isPermaLink="false">http://www.deimeke.net/dirk/blog/index.php?/archives/2997-guid.html</guid>
    <category>fundstücke</category>

</item>
<item>
    <title>Wohnhaft in ...</title>
    <link>http://www.deimeke.net/dirk/blog/index.php?/archives/2996-Wohnhaft-in-....html</link>
            <category>fundstücke</category>
    
    <comments>http://www.deimeke.net/dirk/blog/index.php?/archives/2996-Wohnhaft-in-....html#comments</comments>
    <wfw:comment>http://www.deimeke.net/dirk/blog/wfwcomment.php?cid=2996</wfw:comment>

    <slash:comments>0</slash:comments>
    <wfw:commentRss>http://www.deimeke.net/dirk/blog/rss.php?version=2.0&amp;type=comments&amp;cid=2996</wfw:commentRss>
    

    <author>nospam@example.com (Dirk Deimeke)</author>
    <content:encoded>
    &lt;p class=&quot;break&quot;&gt;Fritz Eckenga im &lt;a href=&quot;http://medien.wdr.de/m/1335333828/radio/schraegstrich/wdr5_schraegstrich_20120425_0900.mp3&quot; title=&quot;&quot;&gt;Schrägstrich von WDR5&lt;/a&gt; (mp3):&lt;/p&gt;&lt;blockquote&gt;&lt;p class=&quot;break&quot;&gt;Ich verbüsse meine Wohnhaft in Dortmund.&lt;/p&gt;&lt;/blockquote&gt;&lt;p&gt;Ich mag diese Art Wortspiele.&lt;/p&gt; 
    </content:encoded>

    <pubDate>Wed, 02 May 2012 07:27:13 +0200</pubDate>
    <guid isPermaLink="false">http://www.deimeke.net/dirk/blog/index.php?/archives/2996-guid.html</guid>
    <category>fundstücke</category>

</item>
<item>
    <title>Arbeitsmoral zum Tag der Arbeit ...</title>
    <link>http://www.deimeke.net/dirk/blog/index.php?/archives/2995-Arbeitsmoral-zum-Tag-der-Arbeit-....html</link>
            <category>gedanken</category>
    
    <comments>http://www.deimeke.net/dirk/blog/index.php?/archives/2995-Arbeitsmoral-zum-Tag-der-Arbeit-....html#comments</comments>
    <wfw:comment>http://www.deimeke.net/dirk/blog/wfwcomment.php?cid=2995</wfw:comment>

    <slash:comments>0</slash:comments>
    <wfw:commentRss>http://www.deimeke.net/dirk/blog/rss.php?version=2.0&amp;type=comments&amp;cid=2995</wfw:commentRss>
    

    <author>nospam@example.com (Dirk Deimeke)</author>
    <content:encoded>
    &lt;p class=&quot;whiteline&quot;&gt;Vor 49 Jahren hat Heinrich Böll die &lt;a href=&quot;http://www.immortelle.de/arbeitsmoral.html&quot; title=&quot;Anekdote zur Senkung der Arbeitsmoral&quot;&gt;Anekdote zur Senkung der Arbeitsmoral&lt;/a&gt; für den Norddeutschen Rundfunk zum 1. Mai 1963 geschrieben (&lt;a href=&quot;https://de.wikipedia.org/wiki/Anekdote_zur_Senkung_der_Arbeitsmoral&quot; title=&quot;Anekdote zur Senkung der Arbeitsmoral – Wikipedia&quot;&gt;Wikipedia&lt;/a&gt;). Vielleicht ist ein Tag der Arbeit eine gute Gelegenheit sich einmal Gedanken darüber zu machen, was man genau mit der Arbeit und mit seinem Leben erreichen möchte.
&lt;/p&gt;&lt;p class=&quot;break&quot;&gt;Ich habe das vor zweieinhalb Jahren mal sehr amateurhaft &lt;a href=&quot;http://www.deimeke.net/dirk/blog/index.php?/archives/1903-Null-null-zwei-....html&quot; title=&quot;Null-null-zwei ... | Dirks Logbuch&quot;&gt;vertont&lt;/a&gt;.&lt;/p&gt; 
    </content:encoded>

    <pubDate>Tue, 01 May 2012 19:04:38 +0200</pubDate>
    <guid isPermaLink="false">http://www.deimeke.net/dirk/blog/index.php?/archives/2995-guid.html</guid>
    <category>gedanken</category>

</item>
<item>
    <title>Aktuelles Sabayon-Update (Ende April 2012) ...</title>
    <link>http://www.deimeke.net/dirk/blog/index.php?/archives/2994-Aktuelles-Sabayon-Update-Ende-April-2012-....html</link>
            <category>sabayon</category>
    
    <comments>http://www.deimeke.net/dirk/blog/index.php?/archives/2994-Aktuelles-Sabayon-Update-Ende-April-2012-....html#comments</comments>
    <wfw:comment>http://www.deimeke.net/dirk/blog/wfwcomment.php?cid=2994</wfw:comment>

    <slash:comments>2</slash:comments>
    <wfw:commentRss>http://www.deimeke.net/dirk/blog/rss.php?version=2.0&amp;type=comments&amp;cid=2994</wfw:commentRss>
    

    <author>nospam@example.com (Dirk Deimeke)</author>
    <content:encoded>
    &lt;p class=&quot;whiteline&quot;&gt;Das letzte Sabayon-Update hatte es leider in sich und gleich zwei Probleme mitgebracht.
&lt;/p&gt;&lt;p class=&quot;break&quot;&gt;Zum Einen gab es ein Upstream (Gentoo) Problem. Die Beschreibung dazu kann man sich mit&lt;/p&gt;&lt;p class=&quot;break&quot;&gt;&lt;div class=&quot;bash geshi&quot; style=&quot;text-align: left&quot;&gt;equo notice sabayon-weekly&lt;/div&gt;&lt;/p&gt;&lt;p class=&quot;break&quot;&gt;anschauen. Die Lösung ist, die folgenden Pakete zu installieren:&lt;/p&gt;&lt;p class=&quot;break&quot;&gt;&lt;div class=&quot;bash geshi&quot; style=&quot;text-align: left&quot;&gt;equo &lt;span style=&quot;color: #c20cb9; font-weight: bold;&quot;&gt;install&lt;/span&gt; gtk+:&lt;span style=&quot;color: #000000;&quot;&gt;2&lt;/span&gt; gtk+:&lt;span style=&quot;color: #000000;&quot;&gt;3&lt;/span&gt; gdk-pixbuf x11-libs&lt;span style=&quot;color: #000000; font-weight: bold;&quot;&gt;/&lt;/span&gt;pango&lt;/div&gt;&lt;/p&gt;&lt;p class=&quot;whiteline&quot;&gt;Mehr dazu gibt es &lt;a href=&quot;http://forum.sabayon.org/viewtopic.php?f=76&amp;amp;t=27064&amp;amp;start=20#p148616&quot; title=&quot;Sabayon Forums &amp;bull; Information&quot;&gt;im Forum&lt;/a&gt;.
&lt;/p&gt;&lt;p class=&quot;whiteline&quot;&gt;So etwas kann bei &lt;a href=&quot;https://de.wikipedia.org/wiki/Rolling_Release&quot; title=&quot;Rolling Release – Wikipedia&quot;&gt;Rolling Releases&lt;/a&gt; immer mal wieder passieren.
&lt;/p&gt;&lt;p class=&quot;break&quot;&gt;Zum Anderen ist der Hostname verschwunden, dazu muss man nur wissen, dass der in der Datei &lt;code&gt;/etc/conf.d/hostname&lt;/code&gt; konfigurierbar ist und durch &lt;code&gt;/etc/init.d/hostname restart&lt;/code&gt; aktiviert wird (nein, kein Neustart nötig, das ist nicht Windows).&lt;/p&gt; 
    </content:encoded>

    <pubDate>Tue, 01 May 2012 13:53:28 +0200</pubDate>
    <guid isPermaLink="false">http://www.deimeke.net/dirk/blog/index.php?/archives/2994-guid.html</guid>
    <category>sabayon</category>

</item>
<item>
    <title>Donnervogel ...</title>
    <link>http://www.deimeke.net/dirk/blog/index.php?/archives/2993-Donnervogel-....html</link>
            <category>computer</category>
    
    <comments>http://www.deimeke.net/dirk/blog/index.php?/archives/2993-Donnervogel-....html#comments</comments>
    <wfw:comment>http://www.deimeke.net/dirk/blog/wfwcomment.php?cid=2993</wfw:comment>

    <slash:comments>42</slash:comments>
    <wfw:commentRss>http://www.deimeke.net/dirk/blog/rss.php?version=2.0&amp;type=comments&amp;cid=2993</wfw:commentRss>
    

    <author>nospam@example.com (Dirk Deimeke)</author>
    <content:encoded>
    &lt;p class=&quot;whiteline&quot;&gt;Nach reichlich Jahren mit &lt;a href=&quot;http://www.claws-mail.org/&quot; title=&quot;Claws Mail - the email client that bites!&quot;&gt;Claws-Mail&lt;/a&gt; gebe ich &lt;a href=&quot;https://www.mozilla.org/en-US/thunderbird/&quot; title=&quot;Mozilla Thunderbird&quot;&gt;Thunderbird&lt;/a&gt; noch einmal eine Chance und ich muss gestehen, dass sich seit meinem letzten Versuch mit Thunderbird eine Menge getan hat. Zuerst einmal kommt der Donnervogel mit meinem Mailvolumen zurecht, das war früher nicht so. Auch an der Geschwindigkeit hat sich eine Menge getan.
&lt;/p&gt;&lt;p class=&quot;whiteline&quot;&gt;Ich merke aber auch, dass Claws-Mail deutlich besser konfigurierbar ist als Thunderbird, dafür lässt sich Thunderbird mit Addons &quot;pimpen&quot;. Bei Claws hat sich in den letzten Jahren nicht mehr viel getan und bei Thunderbird sehe ich eine stetige Weiterentwicklung. Sehr gut!
&lt;/p&gt;&lt;p class=&quot;break&quot;&gt;Zwei Fragen habe ich an Euch, meine Leser:&lt;/p&gt;&lt;ol&gt;
&lt;li&gt;Wie kann ich Filter auf einem Rechner exportieren und auf einem anderen Rechner importieren? Oder kann ich einfach das .thunderbird-Verzeichnis übernehmen?&lt;/li&gt;
&lt;li&gt;Welche Addons sind unbedingt empfehlenswert?&lt;/li&gt;
&lt;/ol&gt;&lt;p class=&quot;break&quot;&gt;Danke im Voraus für Eure Hilfe!&lt;/p&gt; 
    </content:encoded>

    <pubDate>Tue, 01 May 2012 13:25:19 +0200</pubDate>
    <guid isPermaLink="false">http://www.deimeke.net/dirk/blog/index.php?/archives/2993-guid.html</guid>
    <category>claws-mail</category>
<category>computer</category>
<category>thunderbird</category>

</item>
<item>
    <title>Es ist so einfach ...</title>
    <link>http://www.deimeke.net/dirk/blog/index.php?/archives/2992-Es-ist-so-einfach-....html</link>
            <category>technik</category>
    
    <comments>http://www.deimeke.net/dirk/blog/index.php?/archives/2992-Es-ist-so-einfach-....html#comments</comments>
    <wfw:comment>http://www.deimeke.net/dirk/blog/wfwcomment.php?cid=2992</wfw:comment>

    <slash:comments>7</slash:comments>
    <wfw:commentRss>http://www.deimeke.net/dirk/blog/rss.php?version=2.0&amp;type=comments&amp;cid=2992</wfw:commentRss>
    

    <author>nospam@example.com (Dirk Deimeke)</author>
    <content:encoded>
    &lt;p class=&quot;whiteline&quot;&gt;... den User - in diesem Fall mich - glücklich zu machen.
&lt;/p&gt;&lt;p class=&quot;whiteline&quot;&gt;Die &lt;a href=&quot;http://www.deimeke.net/dirk/blog/index.php?/archives/2991-Synology-DS212+-....html&quot; title=&quot;Synology DS212+ ... | Dirks Logbuch&quot;&gt;neue Box&lt;/a&gt; redet mit mir. Warum implementieren andere Hersteller eigentlich keine EMail-Benachrichtigung?
&lt;/p&gt;&lt;pre&gt;Dear user,

ds has finished checking the consistency on Volume 1. The system is now ready for use.

Sincerely,
Synology DiskStation&lt;/pre&gt; 
    </content:encoded>

    <pubDate>Fri, 27 Apr 2012 13:24:23 +0200</pubDate>
    <guid isPermaLink="false">http://www.deimeke.net/dirk/blog/index.php?/archives/2992-guid.html</guid>
    <category>technik</category>

</item>
<item>
    <title>Synology DS212+ ...</title>
    <link>http://www.deimeke.net/dirk/blog/index.php?/archives/2991-Synology-DS212+-....html</link>
            <category>technik</category>
    
    <comments>http://www.deimeke.net/dirk/blog/index.php?/archives/2991-Synology-DS212+-....html#comments</comments>
    <wfw:comment>http://www.deimeke.net/dirk/blog/wfwcomment.php?cid=2991</wfw:comment>

    <slash:comments>10</slash:comments>
    <wfw:commentRss>http://www.deimeke.net/dirk/blog/rss.php?version=2.0&amp;type=comments&amp;cid=2991</wfw:commentRss>
    

    <author>nospam@example.com (Dirk Deimeke)</author>
    <content:encoded>
    &lt;p class=&quot;whiteline&quot;&gt;&lt;a class=&quot;serendipity_image_link&quot;  href=&#039;http://www.amazon.de/exec/obidos/ASIN/B005TOXIC4/ref=nosim/dirkshomepa09-21&#039;&gt;&lt;!-- s9ymdb:6469 --&gt;&lt;img class=&quot;serendipity_image_left&quot; width=&quot;110&quot; height=&quot;110&quot; src=&quot;http://www.deimeke.net/dirk/blog/uploads/amazon/B005TOXIC4.serendipityThumb.jpg&quot; alt=&quot;&quot;  /&gt;&lt;/a&gt; Seit gestern gehört ein &lt;a href=&quot;http://www.synology.com/products/product.php?product_name=DS212%2B&amp;amp;lang=deu&quot; title=&quot;DS212+ Products - Synology Inc. Network Attached Storage - NEW NAS Experience&quot;&gt;Synology DS212+&lt;/a&gt; , bestückt mit zwei &lt;a href=&quot;http://www.wdc.com/global/products/specs/?driveID=933&amp;amp;language=1&quot; title=&quot;Untitled Page&quot;&gt;Western Digital Caviar Green (WD20EARX, je 2 TB)&lt;/a&gt; zu unserem Technikfuhrpark. Was mir schon einmal positiv aufgefallen ist, dass Linux direkt unterstützt wird und sogar eine Basiseinrichtungssoftware für Linux angeboten wird. Alles, was man braucht, ist unter den Downloads auf der Synology-Homepage verfügbar, die Übertragungsraten für den Download sind aber &quot;für den Eimer&quot;.
&lt;/p&gt;&lt;p class=&quot;whiteline&quot;&gt;Die Box kommt komplett nackt und ohne Betriebssystem, das muss man erst herunterladen (so habe ich es gemacht) oder von der beigelegten CD installieren. Da für die Download der rund 170 MB grossen Firmware-Datei gestern Abend 45 Minuten aufgerufen wurden, habe ich die Basisinstallation erst heute Morgen gemacht. Das flutscht. Momentan läuft ein Check der Festplatten, die Box ist aber bereits voll benutzbar und trotz Plattencheck hat eine erste Kopie von 10 GB an Daten schon 50 MB pro Sekunde geschafft. Das ist ordentlich.
&lt;/p&gt;&lt;p class=&quot;break&quot;&gt;Mein erster Eindruck ist sehr gut. Was die Lärmbelastung und die Benutzung im Alltag angeht, wird sich in den nächsten Tagen / Wochen / Monaten zeigen.&lt;/p&gt; 
    </content:encoded>

    <pubDate>Fri, 27 Apr 2012 08:31:00 +0200</pubDate>
    <guid isPermaLink="false">http://www.deimeke.net/dirk/blog/index.php?/archives/2991-guid.html</guid>
    <category>technik</category>

</item>
<item>
    <title>Kommandozeilen-Anwendungen ...</title>
    <link>http://www.deimeke.net/dirk/blog/index.php?/archives/2985-Kommandozeilen-Anwendungen-....html</link>
            <category>technik</category>
    
    <comments>http://www.deimeke.net/dirk/blog/index.php?/archives/2985-Kommandozeilen-Anwendungen-....html#comments</comments>
    <wfw:comment>http://www.deimeke.net/dirk/blog/wfwcomment.php?cid=2985</wfw:comment>

    <slash:comments>4</slash:comments>
    <wfw:commentRss>http://www.deimeke.net/dirk/blog/rss.php?version=2.0&amp;type=comments&amp;cid=2985</wfw:commentRss>
    

    <author>nospam@example.com (Dirk Deimeke)</author>
    <content:encoded>
    &lt;p class=&quot;whiteline&quot;&gt;Meine private Top 10 oder der Anwendungen für die Kommandozeile, vielleicht sollte ich eher sagen, dass das meine Lieblingsanwendungen sind und nicht unbedingt die, die ich am häufigsten benutze (dann müsste wenigstens &lt;code&gt;sudo&lt;/code&gt; noch dazu).
&lt;/p&gt;&lt;p class=&quot;whiteline&quot;&gt;&lt;a href=&quot;http://taskwarrior.org/&quot; title=&quot;Taskwarrior - Overview - Taskwarrior&quot;&gt;Taskwarrior&lt;/a&gt; finde ich gut und dass sage ich nicht nur, weil ich im Core Team bin, sondern eher andersherum, ich bin im Core Team, weil Taskwarrior klasse ist. Taskwarrior zeigt, dass auch Kommandozeilenprogramme durch sinnvollen Einsatz von Farbe und durch übersichtliche leicht zu erlernbare Befehle sehr mächtig und nützlich sein können. Das lohnt sich auch für Leute, die die Kommandozeile &quot;eigentlich&quot; nicht mögen.
&lt;/p&gt;&lt;p class=&quot;whiteline&quot;&gt;&lt;a href=&quot;https://rsync.samba.org/&quot; title=&quot;rsync&quot;&gt;rsync&lt;/a&gt; macht, anders als &lt;a href=&quot;http://www.cis.upenn.edu/~bcpierce/unison/&quot; title=&quot;Unison File Synchronizer&quot;&gt;Unison&lt;/a&gt;, nur Synchronisationen in eine Richtung. Dafür bringt rsync aber auch einen grossen Haufen an (mehr oder weniger) sinnvollen Optionen mit. Selbst lokal kopiere ich grössere Dateien nicht mehr mit &lt;code&gt;cp&lt;/code&gt;, sondern mit rsync, da rsync auch eine Fortschrittsanzeige hat (&lt;code&gt;rsync -Pha quelle ziel&lt;/code&gt;)
&lt;/p&gt;&lt;p class=&quot;whiteline&quot;&gt;&lt;a href=&quot;http://openssh.org/&quot; title=&quot;OpenSSH&quot;&gt;OpenSSH&lt;/a&gt; ist für mich eine Sammlung von universellen Werkzeugen, was Verbindung zu oder über andere Rechner angeht. rsync kann über OpenSSH laufen, Tunnel können gebaut werden, ein einfacher Proxy ist möglich und die Administration anderer Systeme wäre ohne OpenSSH kaum denkbar.
&lt;/p&gt;&lt;p class=&quot;whiteline&quot;&gt;&lt;a href=&quot;http://htop.sourceforge.net/&quot; title=&quot;htop - an interactive process-viewer for Linux&quot;&gt;htop&lt;/a&gt; und vielleicht &lt;a href=&quot;http://guichaz.free.fr/iotop/&quot; title=&quot;Iotop&#039;s homepage&quot;&gt;Iotop&lt;/a&gt;, was ich aber sehr selten nutze. htop ist ein hervorragender Ersatz für top, der einige hilfreiche Optionen mitbringt und zum Teil Funktionen von ps bzw. pstree obsolet macht.
&lt;/p&gt;&lt;p class=&quot;whiteline&quot;&gt;&lt;a href=&quot;http://sebastien.godard.pagesperso-orange.fr/&quot; title=&quot;SYSSTAT&quot;&gt;SYSSTAT&lt;/a&gt; ist eine Sammlung von Werkzeugen, die bei der Analyse eines laufenden Systems helfen. Grafische Auswertungen sind mit &lt;a href=&quot;http://sourceforge.net/projects/ksar/&quot; title=&quot;ksar : a sar grapher | Free System Administration software downloads at SourceForge.net&quot;&gt;kSar&lt;/a&gt; möglich. Schaut auch mal in den &lt;a href=&quot;http://adminstories.de/index.php?/archives/116-Sysstat.html&quot; title=&quot;Sysstat  - adminstories&quot;&gt;Beitrag zu Sysstat in den Adminstories&lt;/a&gt;.
&lt;/p&gt;&lt;p class=&quot;whiteline&quot;&gt;&lt;a href=&quot;http://git-scm.com/&quot; title=&quot;Git&quot;&gt;Git&lt;/a&gt; ist für mich &lt;strong&gt;das&lt;/strong&gt; Versionskontrollsystem, es hat so viele Vorteile und eine unglaublich reichhaltiges Umfeld an Werkzeugen, dass alles hier den Rahmen sprengen würde. &lt;a href=&quot;http://cre.fm/cre130&quot; title=&quot;CRE130 Verteilte Versionskontrollsysteme | CRE: Technik, Kultur, Gesellschaft&quot;&gt;CRE130&lt;/a&gt; möchte ich immer noch als beste Einführung in das Thema verteile Versionskontrollsysteme im Allgemeinen und Git im Speziellen empfehlen.
&lt;/p&gt;&lt;p class=&quot;whiteline&quot;&gt;&lt;a href=&quot;http://sox.sourceforge.net/&quot; title=&quot;SoX - Sound eXchange | HomePage&quot;&gt;SoX&lt;/a&gt; ist das &quot;Schweizer Taschenmesser&quot; der Audiobearbeitung auf der Kommandozeile. Bis auf Schnitt gibt es kaum etwas, was nicht möglich ist und kaum ein Format, das nicht unterstützt wird.
&lt;/p&gt;&lt;p class=&quot;whiteline&quot;&gt;&lt;a href=&quot;http://betterthangrep.com/&quot; title=&quot;ack 1.96 -- better than grep, a source code search tool for programmers&quot;&gt;ack!&lt;/a&gt; ist wie die URL schon sagt &quot;better than grep&quot;, schnell und vielseitig, es macht einfach Spass.
&lt;/p&gt;&lt;p class=&quot;whiteline&quot;&gt;&lt;a href=&quot;http://www.perl.org/&quot; title=&quot;The Perl Programming Language - www.perl.org&quot;&gt;Perl&lt;/a&gt; hier zu nennen ist mir echt schwer gefallen, aber als ich mich vor die Wahl gestellt hatte, Perl oder awk hier zu nennen, ist die Wahl nicht schwer gefallen. Perl ist eine einfach zu lernende und sehr mächtige Programmiersprache, die auch sehr nützlich auf der Kommandozeile ist, wie &lt;a href=&quot;http://novosial.org/perl/one-liner/&quot; title=&quot;NovoSial.org: Perl One Liners&quot;&gt;Perl One Liners&lt;/a&gt; und &lt;a href=&quot;http://www.unixguide.net/unix/perl_oneliners.shtml&quot; title=&quot;PERL One Liners&quot;&gt;Hot Perl Oneliners&lt;/a&gt; beweisen
&lt;/p&gt;&lt;p class=&quot;whiteline&quot;&gt;&lt;a href=&quot;http://curl.haxx.se/&quot; title=&quot;cURL and libcurl&quot;&gt;cURL&lt;/a&gt; ist die eierlegende Wollmilchsau, was Dateiübertragungen angeht, die &lt;a href=&quot;http://curl.haxx.se/docs/features.html&quot; title=&quot;cURL - List of Features&quot;&gt;Features&lt;/a&gt; sind lesenswert und, wenn man sich einmal die &lt;a href=&quot;http://curl.haxx.se/docs/comparison-table.html&quot; title=&quot;cURL - Comparison Table&quot;&gt;Vergleichstabelle&lt;/a&gt; anschaut, sieht man schnell, dass es das stärkste Download- UND Upload-Werkzeug für eine Vielzahl von Protokollen ist.
&lt;/p&gt;&lt;p class=&quot;whiteline&quot;&gt;&lt;a href=&quot;http://www.vim.org/&quot; title=&quot;welcome home : vim online&quot;&gt;Vim&lt;/a&gt;; &lt;a href=&quot;http://www.sudo.ws/&quot; title=&quot;Sudo Main Page&quot;&gt;sudo&lt;/a&gt;; host aus den Utilities von &lt;a href=&quot;https://www.isc.org/software/bind/&quot; title=&quot;BIND | Internet Systems Consortium&quot;&gt;bind&lt;/a&gt;; whois - als Client für das &lt;a href=&quot;https://de.wikipedia.org/wiki/Whois&quot; title=&quot;Whois – Wikipedia&quot;&gt;Whois&lt;/a&gt;-Protokoll; rename (perl-rename in Sabayon); &lt;a href=&quot;http://www.gnu.org/software/screen&quot; title=&quot;GNU Screen - GNU Project - Free Software Foundation&quot;&gt;GNU screen&lt;/a&gt; nutze ich regelmässig und finde ich nützlich (ist aber weit entfernt von &quot;toll&quot;; &lt;a href=&quot;https://de.wikipedia.org/wiki/Awk&quot; title=&quot;awk – Wikipedia&quot;&gt;awk&lt;/a&gt;; &lt;a href=&quot;http://www.sudo.ws/&quot; title=&quot;Sudo Main Page&quot;&gt;sudo&lt;/a&gt;; ... sind weitere gute Anwendungen, die ich auch mehr oder weniger regelmässig nutze, es aber nicht in die &quot;Top 10&quot; geschafft haben.
&lt;/p&gt;&lt;p class=&quot;break&quot;&gt;Kristóf Kovács: &lt;a href=&quot;http://kkovacs.eu/cool-but-obscure-unix-tools&quot; title=&quot;Cool, but obscure unix tools :: KKovacs&quot;&gt;A little collection of cool unix terminal/console/curses tools&lt;/a&gt;&lt;/p&gt; 
    </content:encoded>

    <pubDate>Thu, 26 Apr 2012 09:34:00 +0200</pubDate>
    <guid isPermaLink="false">http://www.deimeke.net/dirk/blog/index.php?/archives/2985-guid.html</guid>
    <category>cygwin</category>
<category>linux</category>
<category>technik</category>
<category>unix</category>

</item>
<item>
    <title>Speicherdienste ...</title>
    <link>http://www.deimeke.net/dirk/blog/index.php?/archives/2990-Speicherdienste-....html</link>
            <category>computer</category>
    
    <comments>http://www.deimeke.net/dirk/blog/index.php?/archives/2990-Speicherdienste-....html#comments</comments>
    <wfw:comment>http://www.deimeke.net/dirk/blog/wfwcomment.php?cid=2990</wfw:comment>

    <slash:comments>6</slash:comments>
    <wfw:commentRss>http://www.deimeke.net/dirk/blog/rss.php?version=2.0&amp;type=comments&amp;cid=2990</wfw:commentRss>
    

    <author>nospam@example.com (Dirk Deimeke)</author>
    <content:encoded>
    &lt;p class=&quot;whiteline&quot;&gt;Die Speicherdienste schiessen ja wie Pilze aus dem Boden, neben den bereits etablierten Diensten wie &lt;a href=&quot;http://dropbox.com/&quot; title=&quot;Dropbox- Simplify your life&quot;&gt;Dropbox&lt;/a&gt;, &lt;a href=&quot;http://wuala.com/&quot; title=&quot;Wuala - Secure Cloud Storage - Backup. Sync. Share. Access Everywhere.&quot;&gt;Wuala&lt;/a&gt; oder das &lt;a href=&quot;https://hidrive.strato.com/&quot; title=&quot;HiDrive&quot;&gt;Strato HiDrive&lt;/a&gt; started nun auch &lt;a href=&quot;https://drive.google.com/&quot; title=&quot;Redirecting...&quot;&gt;Google Drive&lt;/a&gt;. In der Englisch sprachigen Wikipedia gibt es einen sehr guten Überblick über die verschiedenen &lt;a href=&quot;https://en.wikipedia.org/wiki/Comparison_of_file_hosting_services&quot; title=&quot;Comparison of file hosting services - Wikipedia, the free encyclopedia&quot;&gt;file hosting services&lt;/a&gt; und ebenfalls einen &lt;a href=&quot;https://en.wikipedia.org/wiki/Comparison_of_file_synchronization_software#Open_source&quot; title=&quot;Comparison of file synchronization software - Wikipedia, the free encyclopedia&quot;&gt;Vergleich der verschiedenen Synchronisationsprogramme&lt;/a&gt; zum selber Hosten.
&lt;/p&gt;&lt;p class=&quot;whiteline&quot;&gt;Da meiner Meinung nach die eigenen Daten, die bei fremden Anbietern lagern, verschlüsselt werden sollen (auch bei Wuala, wenngleich die nicht nachvollziehbar lokal verschlüsseln sollen). Sebastian hat &lt;a href=&quot;https://dbudwm.wordpress.com/2011/11/26/daten-sicher-in-der-synchro-wolke-dank-encfs/&quot; title=&quot;Daten sicher in der Synchro-Wolke dank encfs &amp;laquo; Der Bayer und der Würschtlmann&quot;&gt;vor einiger Zeit erklärt&lt;/a&gt;, wie man das mit &lt;a href=&quot;http://www.arg0.net/encfs&quot; title=&quot;&quot;&gt;encfs&lt;/a&gt; transparent erledigen kann.
&lt;/p&gt;&lt;p class=&quot;whiteline&quot;&gt;Eine andere Möglichkeit ist, &lt;a href=&quot;https://de.wikipedia.org/wiki/Tar&quot; title=&quot;tar – Wikipedia&quot;&gt;tar&lt;/a&gt; in Verbindung mit &lt;a href=&quot;http://gnupg.org/index.de.html&quot; title=&quot;Der GNU Privacy Guard - GnuPG.org&quot;&gt;GnuPG&lt;/a&gt; zu benutzen, was sich ebenfalls eignet, um Dateien oder den Inhalt ganzer Verzeichnisse zu versenden.
&lt;/p&gt;&lt;p class=&quot;break&quot;&gt;Der Aufruf ist zwar gewöhnungsbedürftig aber ziemlich einfach. Ich benutze die langen Optionen, da sie weitestgehend selbst erklärend sind.&lt;/p&gt;&lt;p class=&quot;break&quot;&gt;&lt;div class=&quot;bash geshi&quot; style=&quot;text-align: left&quot;&gt;&lt;span style=&quot;color: #c20cb9; font-weight: bold;&quot;&gt;tar&lt;/span&gt; &lt;span style=&quot;color: #660033;&quot;&gt;--create&lt;/span&gt; &lt;span style=&quot;color: #660033;&quot;&gt;--file&lt;/span&gt;=- xyz &lt;span style=&quot;color: #000000; font-weight: bold;&quot;&gt;|&lt;/span&gt; gpg &lt;span style=&quot;color: #660033;&quot;&gt;--encrypt&lt;/span&gt; &lt;span style=&quot;color: #660033;&quot;&gt;--recipient&lt;/span&gt; email&lt;span style=&quot;color: #000000; font-weight: bold;&quot;&gt;@&lt;/span&gt;domain.tld &lt;span style=&quot;color: #000000; font-weight: bold;&quot;&gt;&amp;gt;&lt;/span&gt; xyz.tar.gpg&lt;/div&gt;&lt;/p&gt;&lt;p class=&quot;break&quot;&gt;oder kurz&lt;/p&gt;&lt;p class=&quot;break&quot;&gt;&lt;div class=&quot;bash geshi&quot; style=&quot;text-align: left&quot;&gt;&lt;span style=&quot;color: #c20cb9; font-weight: bold;&quot;&gt;tar&lt;/span&gt; cf - xyz &lt;span style=&quot;color: #000000; font-weight: bold;&quot;&gt;|&lt;/span&gt; gpg &lt;span style=&quot;color: #660033;&quot;&gt;-er&lt;/span&gt; email&lt;span style=&quot;color: #000000; font-weight: bold;&quot;&gt;@&lt;/span&gt;domain.tld &lt;span style=&quot;color: #000000; font-weight: bold;&quot;&gt;&amp;gt;&lt;/span&gt; xyz.tar.gpg&lt;/div&gt;&lt;/p&gt;&lt;p class=&quot;whiteline&quot;&gt;&lt;code&gt;xyz&lt;/code&gt; kennzeichnet die Dateien und Verzeichnisse, die verschlüsselt werden sollen. Den öffentlichen Schlüssel für &lt;code&gt;email@domain.tld&lt;/code&gt; muss man vorher bereits importiert haben.
&lt;/p&gt;&lt;p class=&quot;break&quot;&gt;GnuPG komprimiert gut, wenn es aber darauf ankommt, kann man die stärkste Kompression auswählen.&lt;/p&gt;&lt;p class=&quot;whiteline&quot;&gt;&lt;div class=&quot;bash geshi&quot; style=&quot;text-align: left&quot;&gt;&lt;span style=&quot;color: #c20cb9; font-weight: bold;&quot;&gt;tar&lt;/span&gt; cf - xyz &lt;span style=&quot;color: #000000; font-weight: bold;&quot;&gt;|&lt;/span&gt; gpg &lt;span style=&quot;color: #660033;&quot;&gt;-e&lt;/span&gt; &lt;span style=&quot;color: #660033;&quot;&gt;--compress-algo&lt;/span&gt; &lt;span style=&quot;color: #c20cb9; font-weight: bold;&quot;&gt;bzip2&lt;/span&gt; &lt;span style=&quot;color: #660033;&quot;&gt;--bzip2-compress-level&lt;/span&gt; &lt;span style=&quot;color: #000000;&quot;&gt;9&lt;/span&gt; &lt;span style=&quot;color: #660033;&quot;&gt;-r&lt;/span&gt; email&lt;span style=&quot;color: #000000; font-weight: bold;&quot;&gt;@&lt;/span&gt;domain.tld &lt;span style=&quot;color: #000000; font-weight: bold;&quot;&gt;&amp;gt;&lt;/span&gt; xyz.tar.gpg&lt;/div&gt;
&lt;/p&gt;&lt;p class=&quot;break&quot;&gt;Ausgepackt bekommt man die Datei in beiden Fällen mit:&lt;/p&gt;&lt;p class=&quot;break&quot;&gt;&lt;div class=&quot;bash geshi&quot; style=&quot;text-align: left&quot;&gt;gpg &lt;span style=&quot;color: #660033;&quot;&gt;--decrypt&lt;/span&gt; xyz.tar.gpg &lt;span style=&quot;color: #000000; font-weight: bold;&quot;&gt;|&lt;/span&gt; &lt;span style=&quot;color: #c20cb9; font-weight: bold;&quot;&gt;tar&lt;/span&gt; &lt;span style=&quot;color: #660033;&quot;&gt;--extract&lt;/span&gt; &lt;span style=&quot;color: #660033;&quot;&gt;--file&lt;/span&gt;=-&lt;/div&gt;&lt;/p&gt;&lt;p class=&quot;break&quot;&gt;oder&lt;/p&gt;&lt;p class=&quot;break&quot;&gt;&lt;div class=&quot;bash geshi&quot; style=&quot;text-align: left&quot;&gt;gpg &lt;span style=&quot;color: #660033;&quot;&gt;-d&lt;/span&gt; xyz.tar.gpg &lt;span style=&quot;color: #000000; font-weight: bold;&quot;&gt;|&lt;/span&gt; &lt;span style=&quot;color: #c20cb9; font-weight: bold;&quot;&gt;tar&lt;/span&gt; xf -&lt;/div&gt;&lt;/p&gt;&lt;p class=&quot;break&quot;&gt;&lt;strong&gt;ACHTUNG:&lt;/strong&gt; Ohne den privaten Schlüssel kommt man an die Daten nicht mehr heran, daher unbedingt eine Sicherheitskopie des gesamten Schlüssels machen.&lt;/p&gt; 
    </content:encoded>

    <pubDate>Wed, 25 Apr 2012 10:42:00 +0200</pubDate>
    <guid isPermaLink="false">http://www.deimeke.net/dirk/blog/index.php?/archives/2990-guid.html</guid>
    <category>computer</category>
<category>plattformübergreifend</category>

</item>
<item>
    <title>GMail als Relay mit Postfix ...</title>
    <link>http://www.deimeke.net/dirk/blog/index.php?/archives/2989-GMail-als-Relay-mit-Postfix-....html</link>
            <category>linux</category>
    
    <comments>http://www.deimeke.net/dirk/blog/index.php?/archives/2989-GMail-als-Relay-mit-Postfix-....html#comments</comments>
    <wfw:comment>http://www.deimeke.net/dirk/blog/wfwcomment.php?cid=2989</wfw:comment>

    <slash:comments>2</slash:comments>
    <wfw:commentRss>http://www.deimeke.net/dirk/blog/rss.php?version=2.0&amp;type=comments&amp;cid=2989</wfw:commentRss>
    

    <author>nospam@example.com (Dirk Deimeke)</author>
    <content:encoded>
    &lt;p class=&quot;whiteline&quot;&gt;Nur, um das mal eben &quot;wegzubloggen&quot; und um es danach vergessen zu können.
&lt;/p&gt;&lt;p class=&quot;whiteline&quot;&gt;Wenn man Monitoring macht, ist es nicht sinnvoll, Mails, die das Monitoring betreffen, über die zu überwachende Infrastruktur zu senden. Da kann es von Vorteil sein, die Monitoring-Mails via Google zu schicken.
&lt;/p&gt;&lt;p class=&quot;whiteline&quot;&gt;Hier die kurze Anleitung für Debian Squeeze.
&lt;/p&gt;&lt;p class=&quot;break&quot;&gt;Zunächst Postfix installieren und die notwendigen Pakete für die Verschlüsselung.&lt;/p&gt;&lt;p class=&quot;break&quot;&gt;&lt;div class=&quot;bash geshi&quot; style=&quot;text-align: left&quot;&gt;&lt;span style=&quot;color: #c20cb9; font-weight: bold;&quot;&gt;aptitude&lt;/span&gt; &lt;span style=&quot;color: #c20cb9; font-weight: bold;&quot;&gt;install&lt;/span&gt; postfix libsasl2-&lt;span style=&quot;color: #000000;&quot;&gt;2&lt;/span&gt; ca-certificates libsasl2-modules&lt;/div&gt;&lt;/p&gt;&lt;p class=&quot;whiteline&quot;&gt;Meiner Meinung nach, ist es egal, was Ihr bei der Installation von Postfix eintragt, weiter unten kommen wir zur &lt;code&gt;main.cf&lt;/code&gt;.
&lt;/p&gt;&lt;p class=&quot;break&quot;&gt;Eine Datei &lt;code&gt;/etc/postfix/sasl_passwd&lt;/code&gt; mit folgendem Inhalt erstellen (natürlich sollte da Euer User und Euer Passwort stehen):&lt;/p&gt;&lt;pre&gt;smtp.gmail.com meinuser@gmail.com:passwort&lt;/pre&gt;&lt;p class=&quot;break&quot;&gt;Und eine Hashmap erstellen:&lt;/p&gt;&lt;p class=&quot;break&quot;&gt;&lt;div class=&quot;bash geshi&quot; style=&quot;text-align: left&quot;&gt;postmap &lt;span style=&quot;color: #000000; font-weight: bold;&quot;&gt;/&lt;/span&gt;etc&lt;span style=&quot;color: #000000; font-weight: bold;&quot;&gt;/&lt;/span&gt;postfix&lt;span style=&quot;color: #000000; font-weight: bold;&quot;&gt;/&lt;/span&gt;sasl_passwd&lt;/div&gt;&lt;/p&gt;&lt;p class=&quot;break&quot;&gt;Die Dateien müssen nur durch den User Postfix lesbar sein:&lt;/p&gt;&lt;p class=&quot;whiteline&quot;&gt;&lt;div class=&quot;bash geshi&quot; style=&quot;text-align: left&quot;&gt;&lt;span style=&quot;color: #c20cb9; font-weight: bold;&quot;&gt;chown&lt;/span&gt; postfix:postfix &lt;span style=&quot;color: #000000; font-weight: bold;&quot;&gt;/&lt;/span&gt;etc&lt;span style=&quot;color: #000000; font-weight: bold;&quot;&gt;/&lt;/span&gt;postfix&lt;span style=&quot;color: #000000; font-weight: bold;&quot;&gt;/&lt;/span&gt;sasl_passwd&lt;span style=&quot;color: #000000; font-weight: bold;&quot;&gt;*&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;color: #c20cb9; font-weight: bold;&quot;&gt;chmod&lt;/span&gt; &lt;span style=&quot;color: #000000;&quot;&gt;600&lt;/span&gt; &lt;span style=&quot;color: #000000; font-weight: bold;&quot;&gt;/&lt;/span&gt;etc&lt;span style=&quot;color: #000000; font-weight: bold;&quot;&gt;/&lt;/span&gt;postfix&lt;span style=&quot;color: #000000; font-weight: bold;&quot;&gt;/&lt;/span&gt;sasl_passwd&lt;span style=&quot;color: #000000; font-weight: bold;&quot;&gt;*&lt;/span&gt;&lt;/div&gt;
&lt;/p&gt;&lt;p class=&quot;whiteline&quot;&gt;Folgende &lt;code&gt;main.cf&lt;/code&gt; kann verwendet werden, schöner ist es mit &quot;richtigen&quot; Zertifikaten, aber die Datei tut es auch. Bitte an den richtigen Stellen anpassen und die GMail-Teile einfach übernehmen.
&lt;/p&gt;&lt;pre&gt;# See /usr/share/postfix/main.cf.dist for a commented, more complete version

# Debian specific:  Specifying a file name will cause the first
# line of that file to be used as the name.  The Debian default
# is /etc/mailname.
#myorigin = /etc/mailname

smtpd_banner = $myhostname ESMTP $mail_name (Debian/GNU)
biff = no

# appending .domain is the MUA&#039;s job.
append_dot_mydomain = no

# Uncomment the next line to generate &quot;delayed mail&quot; warnings
#delay_warning_time = 4h

readme_directory = no

# TLS parameters
smtpd_tls_cert_file=/etc/ssl/certs/ssl-cert-snakeoil.pem
smtpd_tls_key_file=/etc/ssl/private/ssl-cert-snakeoil.key
smtpd_use_tls=no
smtpd_tls_session_cache_database = btree:${data_directory}/smtpd_scache
smtp_tls_session_cache_database = btree:${data_directory}/smtp_scache

# See /usr/share/doc/postfix/TLS_README.gz in the postfix-doc package for
# information on enabling SSL in the smtp client.

# Anpassen
myhostname = my.fqdn.net
# /Anpassen
alias_maps = hash:/etc/aliases
alias_database = hash:/etc/aliases
myorigin = /etc/mailname
mydestination = FQDN, localhost.yawnrz.net, localhost
# GMail
relayhost = smtp.gmail.com:587
# /GMail
mynetworks = 127.0.0.0/8 [::ffff:127.0.0.0]/104 [::1]/128
mailbox_size_limit = 0
recipient_delimiter = +
inet_interfaces = loopback-only
default_transport = smtp
relay_transport = smtp
inet_protocols = all

# GMail
smtp_use_tls=yes
smtp_sasl_auth_enable = yes
smtp_sasl_password_maps = hash:/etc/postfix/sasl_passwd
smtp_sasl_security_options = noanonymous
smtp_sasl_tls_security_options = noanonymous
# /GMail&lt;/pre&gt;&lt;p&gt;
&lt;/p&gt;&lt;p class=&quot;break&quot;&gt;Zu letzt muss Postfix neu gestartet werden.&lt;/p&gt;&lt;p class=&quot;whiteline&quot;&gt;&lt;div class=&quot;bash geshi&quot; style=&quot;text-align: left&quot;&gt;service postfix restart&lt;/div&gt;
&lt;/p&gt;&lt;p class=&quot;break&quot;&gt;Ein Test darf natürlich nicht fehlen:&lt;/p&gt;&lt;p class=&quot;whiteline&quot;&gt;&lt;div class=&quot;bash geshi&quot; style=&quot;text-align: left&quot;&gt;&lt;span style=&quot;color: #000000; font-weight: bold;&quot;&gt;&amp;lt;&lt;/span&gt; &lt;span style=&quot;color: #000000; font-weight: bold;&quot;&gt;/&lt;/span&gt;etc&lt;span style=&quot;color: #000000; font-weight: bold;&quot;&gt;/&lt;/span&gt;hosts mail &lt;span style=&quot;color: #660033;&quot;&gt;-s&lt;/span&gt; Testmail EureMail&lt;span style=&quot;color: #000000; font-weight: bold;&quot;&gt;@&lt;/span&gt;provider.tld&lt;/div&gt;(Die Mail muss nicht an eine GMail-Adresse gehen).
&lt;/p&gt;&lt;p class=&quot;break&quot;&gt;Prüfen, ob alles gut war:&lt;/p&gt;&lt;p class=&quot;break&quot;&gt;&lt;div class=&quot;bash geshi&quot; style=&quot;text-align: left&quot;&gt;&lt;span style=&quot;color: #c20cb9; font-weight: bold;&quot;&gt;tail&lt;/span&gt; &lt;span style=&quot;color: #660033;&quot;&gt;-20&lt;/span&gt; &lt;span style=&quot;color: #000000; font-weight: bold;&quot;&gt;/&lt;/span&gt;var&lt;span style=&quot;color: #000000; font-weight: bold;&quot;&gt;/&lt;/span&gt;log&lt;span style=&quot;color: #000000; font-weight: bold;&quot;&gt;/&lt;/span&gt;mail.log&lt;/div&gt;&lt;/p&gt; 
    </content:encoded>

    <pubDate>Tue, 24 Apr 2012 08:49:00 +0200</pubDate>
    <guid isPermaLink="false">http://www.deimeke.net/dirk/blog/index.php?/archives/2989-guid.html</guid>
    <category>linux</category>

</item>
<item>
    <title>Kollateralschaden ...</title>
    <link>http://www.deimeke.net/dirk/blog/index.php?/archives/2988-Kollateralschaden-....html</link>
            <category>allgemein</category>
    
    <comments>http://www.deimeke.net/dirk/blog/index.php?/archives/2988-Kollateralschaden-....html#comments</comments>
    <wfw:comment>http://www.deimeke.net/dirk/blog/wfwcomment.php?cid=2988</wfw:comment>

    <slash:comments>2</slash:comments>
    <wfw:commentRss>http://www.deimeke.net/dirk/blog/rss.php?version=2.0&amp;type=comments&amp;cid=2988</wfw:commentRss>
    

    <author>nospam@example.com (Dirk Deimeke)</author>
    <content:encoded>
    &lt;p class=&quot;whiteline&quot;&gt;Es ist ja nicht so, dass es nicht schon einmal passiert wäre ...
&lt;/p&gt;&lt;p class=&quot;whiteline&quot;&gt;Da ich &lt;a href=&quot;https://secure.wikimedia.org/wikipedia/de/wiki/Extensible_Messaging_and_Presence_Protocol&quot; title=&quot;&quot;&gt;Jabber&lt;/a&gt; sehr selten benutze, vergesse ich nahezu immer die Daten des Jabber-Servers (bei mir &lt;a href=&quot;http://www.process-one.net/en/ejabberd/&quot; title=&quot;ejabberd - High Performance Instant Messaging - ProcessOne&quot;&gt;ejabberd&lt;/a&gt;) zu migrieren. Grmpf. Und natürlich fällt mir das ein, wenn die Inhalte der Platten zum zweiten Mal gelöscht werden. Nun ja ...
&lt;/p&gt;&lt;p class=&quot;break&quot;&gt;Wer also von mir per Jabber hinzugefügt werden möchte, kann sich gerne per E-Mail bei mir melden oder versuchen mich zu erreichen, wenn ich den Dienst wieder installiert habe.&lt;/p&gt; 
    </content:encoded>

    <pubDate>Mon, 23 Apr 2012 08:58:33 +0200</pubDate>
    <guid isPermaLink="false">http://www.deimeke.net/dirk/blog/index.php?/archives/2988-guid.html</guid>
    <category>allgemein</category>

</item>
<item>
    <title>Webkram auch migriert ...</title>
    <link>http://www.deimeke.net/dirk/blog/index.php?/archives/2987-Webkram-auch-migriert-....html</link>
            <category>allgemein</category>
    
    <comments>http://www.deimeke.net/dirk/blog/index.php?/archives/2987-Webkram-auch-migriert-....html#comments</comments>
    <wfw:comment>http://www.deimeke.net/dirk/blog/wfwcomment.php?cid=2987</wfw:comment>

    <slash:comments>2</slash:comments>
    <wfw:commentRss>http://www.deimeke.net/dirk/blog/rss.php?version=2.0&amp;type=comments&amp;cid=2987</wfw:commentRss>
    

    <author>nospam@example.com (Dirk Deimeke)</author>
    <content:encoded>
    &lt;p class=&quot;whiteline&quot;&gt;Nachdem ich den Mailkram schon in der letzten Woche migriert habe, fehlte noch das Webzeugs.
&lt;/p&gt;&lt;p class=&quot;whiteline&quot;&gt;Das habe ich jetzt auf den neuen Server umgezogen. Wenn Ihr Fehler finden solltet, dann meldet Euch bitte! (Vielen Dank im voraus).
&lt;/p&gt;&lt;p class=&quot;whiteline&quot;&gt;Jetzt gilt es noch die letzten Backups der alten Server zu kopieren, bevor mit einem &lt;a href=&quot;http://lambda-diode.com/software/wipe/&quot; title=&quot;Wipe, A UNIX tool for secure deletion&quot;&gt;wipe&lt;/a&gt; die Platten hoffentlich rückstandsfrei von Altdaten bereinigt werden.
&lt;/p&gt;&lt;p class=&quot;break&quot;&gt;Danach folgt noch geringfügiges Feintuning und ich bin fertig.&lt;/p&gt; 
    </content:encoded>

    <pubDate>Sun, 22 Apr 2012 13:25:42 +0200</pubDate>
    <guid isPermaLink="false">http://www.deimeke.net/dirk/blog/index.php?/archives/2987-guid.html</guid>
    <category>allgemein</category>

</item>
<item>
    <title>Logs ...</title>
    <link>http://www.deimeke.net/dirk/blog/index.php?/archives/2986-Logs-....html</link>
            <category>linux</category>
    
    <comments>http://www.deimeke.net/dirk/blog/index.php?/archives/2986-Logs-....html#comments</comments>
    <wfw:comment>http://www.deimeke.net/dirk/blog/wfwcomment.php?cid=2986</wfw:comment>

    <slash:comments>4</slash:comments>
    <wfw:commentRss>http://www.deimeke.net/dirk/blog/rss.php?version=2.0&amp;type=comments&amp;cid=2986</wfw:commentRss>
    

    <author>nospam@example.com (Dirk Deimeke)</author>
    <content:encoded>
    &lt;p class=&quot;whiteline&quot;&gt;Meine wenig rühmlichen Versuche mit &lt;a href=&quot;http://sourceforge.net/projects/logwatch/files/&quot; title=&quot;Logwatch -  Browse Files at SourceForge.net&quot;&gt;logwatch&lt;/a&gt; habe ich in den Adminstories &lt;a href=&quot;http://adminstories.de/index.php?/archives/121-Logwatch.html&quot; title=&quot;Logwatch  - adminstories&quot;&gt;dokumentiert&lt;/a&gt;. Sven Hartge hat in den &lt;a href=&quot;http://www.deimeke.net/dirk/blog/index.php?/archives/2959-comments.html#c15392&quot; title=&quot;scponly ... | Dirks Logbuch&quot;&gt;Kommentaren zu scponly&lt;/a&gt; das Programm &lt;a href=&quot;http://logcheck.org/&quot; title=&quot;Logcheck -- Logfile Scanner&quot;&gt;logcheck&lt;/a&gt; empfohlen und ich muss sagen, dass ich schwer begeistert bin.
&lt;/p&gt;&lt;p class=&quot;whiteline&quot;&gt;Logcheck wird stündlich per Cronjob aufgerufen und informiert über Dinge, die in der letzten Stunde vorgefallen sind. Dabei kann man definieren, welche Logmeldungen man nicht mehr sehen möchte.
&lt;/p&gt;&lt;p class=&quot;break&quot;&gt;Grossartig! Und: Vielen Dank für den Tipp, Sven!&lt;/p&gt; 
    </content:encoded>

    <pubDate>Fri, 20 Apr 2012 17:14:12 +0200</pubDate>
    <guid isPermaLink="false">http://www.deimeke.net/dirk/blog/index.php?/archives/2986-guid.html</guid>
    <category>linux</category>
<category>logcheck</category>
<category>logwatch</category>

</item>

</channel>
</rss>
