<?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>hostblogger.de - Linux</title>
    <link>http://www.hostblogger.de/blog/</link>
    <description>Aus dem Leben eines DSL | Webhosting | Rootserver - Unternehmers</description>
    <dc:language>de</dc:language>
    <generator>Serendipity 1.5.1 - http://www.s9y.org/</generator>
    <pubDate>Tue, 02 Mar 2010 21:37:04 GMT</pubDate>

    <image>
        <url>http://www.hostblogger.de/blog/templates/default/img/s9y_banner_small.png</url>
        <title>RSS: hostblogger.de - Linux - Aus dem Leben eines DSL | Webhosting | Rootserver - Unternehmers</title>
        <link>http://www.hostblogger.de/blog/</link>
        <width>100</width>
        <height>21</height>
    </image>

<item>
    <title>Speed beim Rebuild eines Software-RAID erhöhen</title>
    <link>http://www.hostblogger.de/blog/archives/4618-Speed-beim-Rebuild-eines-Software-RAID-erhoehen.html</link>
            <category>Linux</category>
    
    <comments>http://www.hostblogger.de/blog/archives/4618-Speed-beim-Rebuild-eines-Software-RAID-erhoehen.html#comments</comments>
    <wfw:comment>http://www.hostblogger.de/blog/wfwcomment.php?cid=4618</wfw:comment>

    <slash:comments>2</slash:comments>
    <wfw:commentRss>http://www.hostblogger.de/blog/rss.php?version=2.0&amp;type=comments&amp;cid=4618</wfw:commentRss>
    

    <author>nospam@example.com (Manuel Schmitt)</author>
    <content:encoded>
    Um den Speed beim Rebuild eines Software-RAID zu erhöhen, kann man das wie folgt erreichen:&lt;br /&gt;
&lt;blockquote&gt;echo 50000 &gt;/proc/sys/dev/raid/speed_limit_min&lt;br /&gt;
echo 100000 &gt;/proc/sys/dev/raid/speed_limit_max&lt;/blockquote&gt;&lt;em&gt;(Notiz für mich &lt;img src=&quot;http://www.hostblogger.de/blog/templates/manitu/img/emoticons/razz.gif&quot; alt=&quot;:razz:&quot; style=&quot;display: inline; vertical-align: bottom;&quot; class=&quot;emoticon&quot; /&gt; )&lt;/em&gt; 
    </content:encoded>

    <pubDate>Tue, 02 Mar 2010 18:50:00 +0100</pubDate>
    <guid isPermaLink="false">http://www.hostblogger.de/blog/archives/4618-guid.html</guid>
    
</item>
<item>
    <title>Dovecot-Patch für Quotas über 4 GB</title>
    <link>http://www.hostblogger.de/blog/archives/4604-Dovecot-Patch-fuer-Quotas-ueber-4-GB.html</link>
            <category>Linux</category>
    
    <comments>http://www.hostblogger.de/blog/archives/4604-Dovecot-Patch-fuer-Quotas-ueber-4-GB.html#comments</comments>
    <wfw:comment>http://www.hostblogger.de/blog/wfwcomment.php?cid=4604</wfw:comment>

    <slash:comments>0</slash:comments>
    <wfw:commentRss>http://www.hostblogger.de/blog/rss.php?version=2.0&amp;type=comments&amp;cid=4604</wfw:commentRss>
    

    <author>nospam@example.com (Manuel Schmitt)</author>
    <content:encoded>
    Falls jemand Dovecot selbst kompiliert und Probleme mit Quotas über 4 GB hat, hier ein Patch (den wir bereits an die Autoren geschickt haben):&lt;blockquote class=&quot;paper&quot;&gt;---&amp;#160;src/plugins/quota/quota-fs.c.orig&amp;#160;&amp;#160;&amp;#160;&amp;#160;Wed&amp;#160;Feb&amp;#160;17&amp;#160;15:16:30&amp;#160;2010&lt;br /&gt;
+++&amp;#160;src/plugins/quota/quota-fs.c&amp;#160;&amp;#160;&amp;#160;&amp;#160;Wed&amp;#160;Feb&amp;#160;17&amp;#160;15:18:21&amp;#160;2010&lt;br /&gt;
@@&amp;#160;-571,14&amp;#160;+571,14&amp;#160;@@&lt;br /&gt;
&amp;#160;&lt;br /&gt;
&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;if&amp;#160;(bytes)&amp;#160;{&lt;br /&gt;
&amp;#160;#if&amp;#160;_LINUX_QUOTA_VERSION&amp;#160;==&amp;#160;1&lt;br /&gt;
-&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;*value_r&amp;#160;=&amp;#160;dqblk.dqb_curblocks&amp;#160;*&amp;#160;1024;&lt;br /&gt;
+&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;*value_r&amp;#160;=&amp;#160;(uint64_t)dqblk.dqb_curblocks&amp;#160;*&amp;#160;1024;&lt;br /&gt;
&amp;#160;#else&lt;br /&gt;
-&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;*value_r&amp;#160;=&amp;#160;dqblk.dqb_curblocks;&lt;br /&gt;
+&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;*value_r&amp;#160;=&amp;#160;(uint64_t)dqblk.dqb_curblocks;&lt;br /&gt;
&amp;#160;#endif&lt;br /&gt;
-&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;*limit_r&amp;#160;=&amp;#160;dqblk.dqb_bsoftlimit&amp;#160;*&amp;#160;1024;&lt;br /&gt;
+&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;*limit_r&amp;#160;=&amp;#160;(uint64_t)dqblk.dqb_bsoftlimit&amp;#160;*&amp;#160;1024;&lt;br /&gt;
&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;}&amp;#160;else&amp;#160;{&lt;br /&gt;
-&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;*value_r&amp;#160;=&amp;#160;dqblk.dqb_curinodes;&lt;br /&gt;
-&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;*limit_r&amp;#160;=&amp;#160;dqblk.dqb_isoftlimit;&lt;br /&gt;
+&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;*value_r&amp;#160;=&amp;#160;(uint64_t)dqblk.dqb_curinodes;&lt;br /&gt;
+&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;*limit_r&amp;#160;=&amp;#160;(uint64_t)dqblk.dqb_isoftlimit;&lt;br /&gt;
&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;}&lt;br /&gt;
&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;}&lt;br /&gt;
&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;return&amp;#160;1;&lt;/blockquote&gt; 
    </content:encoded>

    <pubDate>Wed, 17 Feb 2010 19:15:00 +0100</pubDate>
    <guid isPermaLink="false">http://www.hostblogger.de/blog/archives/4604-guid.html</guid>
    
</item>
<item>
    <title>IPv4 und IPv6 auf Gentoo &quot;mischen&quot;</title>
    <link>http://www.hostblogger.de/blog/archives/4574-IPv4-und-IPv6-auf-Gentoo-mischen.html</link>
            <category>Linux</category>
    
    <comments>http://www.hostblogger.de/blog/archives/4574-IPv4-und-IPv6-auf-Gentoo-mischen.html#comments</comments>
    <wfw:comment>http://www.hostblogger.de/blog/wfwcomment.php?cid=4574</wfw:comment>

    <slash:comments>0</slash:comments>
    <wfw:commentRss>http://www.hostblogger.de/blog/rss.php?version=2.0&amp;type=comments&amp;cid=4574</wfw:commentRss>
    

    <author>nospam@example.com (Manuel Schmitt)</author>
    <content:encoded>
    &lt;a href=&quot;http://www.hostblogger.de/blog/archives/4569-IPv4-und-IPv6-auf-Debian-mischen.html#c31254&quot;&gt;Gerne&lt;/a&gt; auch für Gentoo (in der &lt;code&gt;/etc/conf.d/net&lt;/code&gt;):&lt;br /&gt;
&lt;blockquote class=&quot;paper&quot;&gt;config_eth0=(&lt;br /&gt;
&quot;192.0.2.4/24&quot;&lt;br /&gt;
&quot;2001:db8::6/64&quot;&lt;br /&gt;
)&lt;br /&gt;
&lt;br /&gt;
routes_eth0=(&lt;br /&gt;
&quot;default via 192.0.2.1&quot;&lt;br /&gt;
&quot;default via 2001:db8::1&quot;&lt;br /&gt;
)&lt;/blockquote&gt; 
    </content:encoded>

    <pubDate>Tue, 02 Feb 2010 14:10:00 +0100</pubDate>
    <guid isPermaLink="false">http://www.hostblogger.de/blog/archives/4574-guid.html</guid>
    
</item>
<item>
    <title>IPv4 und IPv6 auf Debian &quot;mischen&quot;</title>
    <link>http://www.hostblogger.de/blog/archives/4569-IPv4-und-IPv6-auf-Debian-mischen.html</link>
            <category>Linux</category>
    
    <comments>http://www.hostblogger.de/blog/archives/4569-IPv4-und-IPv6-auf-Debian-mischen.html#comments</comments>
    <wfw:comment>http://www.hostblogger.de/blog/wfwcomment.php?cid=4569</wfw:comment>

    <slash:comments>5</slash:comments>
    <wfw:commentRss>http://www.hostblogger.de/blog/rss.php?version=2.0&amp;type=comments&amp;cid=4569</wfw:commentRss>
    

    <author>nospam@example.com (Manuel Schmitt)</author>
    <content:encoded>
    Da die Frage in letzter Zeit häufiger aufkommt, (auch) hier eine Beantwortung.&lt;br /&gt;
&lt;br /&gt;
Wer IPv4 und IPv6 in seinem Debian-System mischen möchte, kann dies via &lt;code&gt;/etc/network/interfaces&lt;/code&gt; so tun:&lt;br /&gt;
&lt;blockquote class=&quot;paper&quot;&gt;auto eth0&lt;br /&gt;
&lt;br /&gt;
iface eth0 inet static&lt;br /&gt;
&amp;#160;&amp;#160;&amp;#160;&amp;#160;address 192.0.2.4&lt;br /&gt;
&amp;#160;&amp;#160;&amp;#160;&amp;#160;netmask 255.255.255.0&lt;br /&gt;
&amp;#160;&amp;#160;&amp;#160;&amp;#160;gateway 192.0.2.0.1&lt;br /&gt;
&lt;br /&gt;
iface eth0 inet6 static&lt;br /&gt;
&amp;#160;&amp;#160;&amp;#160;&amp;#160;address 2001:db8::6&lt;br /&gt;
&amp;#160;&amp;#160;&amp;#160;&amp;#160;netmask 64&lt;br /&gt;
&amp;#160;&amp;#160;&amp;#160;&amp;#160;gateway 2001:db8::1&lt;/blockquote&gt;Wichtig hierbei ist,&lt;strong&gt; nicht &lt;code&gt;eth0:0 inet6 static&lt;/code&gt; zu verwenden&lt;/strong&gt;, man stelle sich inet und inet6 als getrennte Adressräume vor, in beiden muss &lt;code&gt;eth0&lt;/code&gt; getrennt definiert werden. 
    </content:encoded>

    <pubDate>Tue, 02 Feb 2010 13:58:00 +0100</pubDate>
    <guid isPermaLink="false">http://www.hostblogger.de/blog/archives/4569-guid.html</guid>
    
</item>
<item>
    <title>mdadm -a vs. mdadm --add</title>
    <link>http://www.hostblogger.de/blog/archives/4475-mdadm-a-vs.-mdadm-add.html</link>
            <category>Linux</category>
    
    <comments>http://www.hostblogger.de/blog/archives/4475-mdadm-a-vs.-mdadm-add.html#comments</comments>
    <wfw:comment>http://www.hostblogger.de/blog/wfwcomment.php?cid=4475</wfw:comment>

    <slash:comments>3</slash:comments>
    <wfw:commentRss>http://www.hostblogger.de/blog/rss.php?version=2.0&amp;type=comments&amp;cid=4475</wfw:commentRss>
    

    <author>nospam@example.com (Manuel Schmitt)</author>
    <content:encoded>
    Wer sich im übrigen wundert, warum&lt;blockquote&gt;mdadm -a&lt;/blockquote&gt;nicht so funktioniert, wie es sollte, und an den Festplatten, dem Controller, dem Betriebssystem oder gar sich selbst zu zweifeln beginnt, sollte einfach an den Entwicklern zweifeln und stattdessen &lt;blockquote&gt;mdadm --add&lt;/blockquote&gt; verwenden. Das funktioniert nämlich. Der Parameter -a ist offenbar dokumentiert, aber funktioniert nicht oder nicht wie gewollt. 
    </content:encoded>

    <pubDate>Wed, 06 Jan 2010 15:59:00 +0100</pubDate>
    <guid isPermaLink="false">http://www.hostblogger.de/blog/archives/4475-guid.html</guid>
    
</item>
<item>
    <title>La Le Lu</title>
    <link>http://www.hostblogger.de/blog/archives/4446-La-Le-Lu.html</link>
            <category>Linux</category>
    
    <comments>http://www.hostblogger.de/blog/archives/4446-La-Le-Lu.html#comments</comments>
    <wfw:comment>http://www.hostblogger.de/blog/wfwcomment.php?cid=4446</wfw:comment>

    <slash:comments>8</slash:comments>
    <wfw:commentRss>http://www.hostblogger.de/blog/rss.php?version=2.0&amp;type=comments&amp;cid=4446</wfw:commentRss>
    

    <author>nospam@example.com (Manuel Schmitt)</author>
    <content:encoded>
    Aus einem internen Mailing, evtl. aber interessant für alle Gentoo-Anwender:&lt;br /&gt;
&lt;blockquote class=&quot;paper-email&quot;&gt;Kleine aber wichtige Information für Gentoo, sollten im Betrieb oder bei Updates Probleme mit .la Files auftreten, kann man dies mit dem neuen Gentoo-Tool lafilefixer beheben. Dazu dieses Programm wie folgt aufrufen:&lt;br /&gt;
&lt;br /&gt;
&amp;#160;&amp;#160;&amp;#160;&amp;#160;lafilefixer --justfixit&lt;br /&gt;
&lt;/blockquote&gt;Irgendwie musste ich bei &quot;lafilefixer&quot; sofort an &quot;La Le Lu&quot; denken &lt;img src=&quot;http://www.hostblogger.de/blog/templates/manitu/img/emoticons/eek.png&quot; alt=&quot;:-O&quot; style=&quot;display: inline; vertical-align: bottom;&quot; class=&quot;emoticon&quot; /&gt; 
    </content:encoded>

    <pubDate>Thu, 17 Dec 2009 14:13:00 +0100</pubDate>
    <guid isPermaLink="false">http://www.hostblogger.de/blog/archives/4446-guid.html</guid>
    
</item>
<item>
    <title>No space left on device</title>
    <link>http://www.hostblogger.de/blog/archives/4363-No-space-left-on-device.html</link>
            <category>Linux</category>
    
    <comments>http://www.hostblogger.de/blog/archives/4363-No-space-left-on-device.html#comments</comments>
    <wfw:comment>http://www.hostblogger.de/blog/wfwcomment.php?cid=4363</wfw:comment>

    <slash:comments>4</slash:comments>
    <wfw:commentRss>http://www.hostblogger.de/blog/rss.php?version=2.0&amp;type=comments&amp;cid=4363</wfw:commentRss>
    

    <author>nospam@example.com (Manuel Schmitt)</author>
    <content:encoded>
    Wer übrigens bei der Fehlermeldung&lt;blockquote&gt;No space left on device&lt;/blockquote&gt;immer nur an Speicherplatz denkt, läuft hin und wieder (gerade bei Ram-Disks oder &lt;a href=&quot;http://de.wikipedia.org/wiki/Loop_device&quot;&gt;Loop-Devices&lt;/a&gt;) Gefahr, die Inodes zu vergessen. So mir gestern Nachmittag passiert. &lt;img src=&quot;http://www.hostblogger.de/blog/templates/manitu/img/emoticons/grrr.gif&quot; alt=&quot;:grrr:&quot; style=&quot;display: inline; vertical-align: bottom;&quot; class=&quot;emoticon&quot; /&gt;&lt;br /&gt;
&lt;br /&gt;
Daher nicht nur ein &lt;blockquote&gt;df&lt;/blockquote&gt; sondern auch &#039;mal ein &lt;blockquote&gt;df -i&lt;/blockquote&gt; machen. &lt;img src=&quot;http://www.hostblogger.de/blog/templates/manitu/img/emoticons/lol.gif&quot; alt=&quot;:lol:&quot; style=&quot;display: inline; vertical-align: bottom;&quot; class=&quot;emoticon&quot; /&gt; 
    </content:encoded>

    <pubDate>Tue, 10 Nov 2009 10:12:00 +0100</pubDate>
    <guid isPermaLink="false">http://www.hostblogger.de/blog/archives/4363-guid.html</guid>
    
</item>
<item>
    <title>Grub hängt evtl. bei XFS-Root- oder -Boot-Partition</title>
    <link>http://www.hostblogger.de/blog/archives/4097-Grub-haengt-evtl.-bei-XFS-Root-oder-Boot-Partition.html</link>
            <category>Linux</category>
    
    <comments>http://www.hostblogger.de/blog/archives/4097-Grub-haengt-evtl.-bei-XFS-Root-oder-Boot-Partition.html#comments</comments>
    <wfw:comment>http://www.hostblogger.de/blog/wfwcomment.php?cid=4097</wfw:comment>

    <slash:comments>3</slash:comments>
    <wfw:commentRss>http://www.hostblogger.de/blog/rss.php?version=2.0&amp;type=comments&amp;cid=4097</wfw:commentRss>
    

    <author>nospam@example.com (Manuel Schmitt)</author>
    <content:encoded>
    Wer übrigens auch schon mal das Phänomen hatte, dass er beim Installieren von Grub bei Vorhandensein einer XFS-Root- oder -Boot-Partition das Problem hatte, dass Grub einfach &quot;hängt&quot;, hier eine kleine Lösung:&lt;br /&gt;
&lt;blockquote&gt;sync&lt;br /&gt;
if&amp;#160;which&amp;#160;xfs_freeze&amp;#160;&gt;/dev/null&amp;#160;;&amp;#160;then&lt;br /&gt;
&amp;#160;&amp;#160;&amp;#160;&amp;#160;xfs_freeze&amp;#160;-f&amp;#160;[MOUNTPOINT]&lt;br /&gt;
&amp;#160;&amp;#160;&amp;#160;&amp;#160;sleep&amp;#160;20&lt;br /&gt;
&amp;#160;&amp;#160;&amp;#160;&amp;#160;xfs_freeze&amp;#160;-u&amp;#160;[MOUNTPOINT]&lt;br /&gt;
fi&lt;/blockquote&gt;Das Problem ist, dass sich Grub und XFS eine kleine Race-Condition liefern. Einige Distributions-Hersteller haben &lt;em&gt;grub-install&lt;/em&gt; daher so wie voranstehend beschrieben gepatcht, andere nicht. 
    </content:encoded>

    <pubDate>Wed, 08 Jul 2009 11:18:00 +0200</pubDate>
    <guid isPermaLink="false">http://www.hostblogger.de/blog/archives/4097-guid.html</guid>
    
</item>
<item>
    <title>shutdown vs. halt</title>
    <link>http://www.hostblogger.de/blog/archives/3996-shutdown-vs.-halt.html</link>
            <category>Linux</category>
    
    <comments>http://www.hostblogger.de/blog/archives/3996-shutdown-vs.-halt.html#comments</comments>
    <wfw:comment>http://www.hostblogger.de/blog/wfwcomment.php?cid=3996</wfw:comment>

    <slash:comments>8</slash:comments>
    <wfw:commentRss>http://www.hostblogger.de/blog/rss.php?version=2.0&amp;type=comments&amp;cid=3996</wfw:commentRss>
    

    <author>nospam@example.com (Manuel Schmitt)</author>
    <content:encoded>
    Für alle, die es noch nicht selbst erfahren durften:&lt;br /&gt;
&lt;blockquote&gt;halt&lt;/blockquote&gt;bringt die Maschine definitiv zum Abschalten, nicht zum Anhalten. Ein Anhalten geht mit&lt;br /&gt;
&lt;blockquote&gt;shutdown -Hh now&lt;/blockquote&gt;&lt;em&gt;(je nach Distribution ist das mit halt aber anders)&lt;/em&gt; 
    </content:encoded>

    <pubDate>Tue, 07 Jul 2009 17:06:00 +0200</pubDate>
    <guid isPermaLink="false">http://www.hostblogger.de/blog/archives/3996-guid.html</guid>
    
</item>
<item>
    <title>timeout</title>
    <link>http://www.hostblogger.de/blog/archives/3983-timeout.html</link>
            <category>Linux</category>
    
    <comments>http://www.hostblogger.de/blog/archives/3983-timeout.html#comments</comments>
    <wfw:comment>http://www.hostblogger.de/blog/wfwcomment.php?cid=3983</wfw:comment>

    <slash:comments>8</slash:comments>
    <wfw:commentRss>http://www.hostblogger.de/blog/rss.php?version=2.0&amp;type=comments&amp;cid=3983</wfw:commentRss>
    

    <author>nospam@example.com (Manuel Schmitt)</author>
    <content:encoded>
    Wer den Befehl auch nicht kennt und ihn stattdessen wie ich lieber selbst in C schreiben möchte, hier eine Anregung, wie es einfacher geht:&lt;br /&gt;
&lt;blockquote&gt;man timeout&lt;/blockquote&gt; &lt;img src=&quot;http://www.hostblogger.de/blog/templates/manitu/img/emoticons/doh.gif&quot; alt=&quot;:doh:&quot; style=&quot;display: inline; vertical-align: bottom;&quot; class=&quot;emoticon&quot; /&gt; 
    </content:encoded>

    <pubDate>Wed, 03 Jun 2009 17:11:22 +0200</pubDate>
    <guid isPermaLink="false">http://www.hostblogger.de/blog/archives/3983-guid.html</guid>
    
</item>

</channel>
</rss>