<?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>Linux Certification LPIC</title>
    <link>http://www.lpi-certification.de/</link>
    <description>Schulung zur LPI-Prüfung des Linux Professional Institutes</description>
    <dc:language>de</dc:language>
    <generator>Serendipity 1.5.1 - http://www.s9y.org/</generator>
    
    

<item>
    <title>Magic Shebang</title>
    <link>http://www.lpi-certification.de/archives/102-Magic-Shebang.html</link>
            <category>117-102-112</category>
    
    <comments>http://www.lpi-certification.de/archives/102-Magic-Shebang.html#comments</comments>
    <wfw:comment>http://www.lpi-certification.de/wfwcomment.php?cid=102</wfw:comment>

    <slash:comments>0</slash:comments>
    <wfw:commentRss>http://www.lpi-certification.de/rss.php?version=2.0&amp;type=comments&amp;cid=102</wfw:commentRss>
    

    <author>nospam@example.com (LPIC)</author>
    <content:encoded>
    Das Shebang-Magic muss am Anfang einer Skript-Datei stehen und ist die Zeichenfolge &quot;&lt;strong&gt;#!&lt;/strong&gt;&quot; (sharp &quot;#&quot; und bang &quot;!&quot;).&lt;br /&gt;
&lt;a href=&quot;http://de.wikipedia.org/wiki/Shebang&quot; &gt;http://de.wikipedia.org/wiki/Shebang&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
Diese Signatur(hexadezimal &quot;0x23 0x21&quot;) wird vom Kernel erkannt und dann der dahinter stehende Befehl mit dem Namen der aufgerufenen Datei als Parameter ausgeführt. Auf diese Weise wird ein Shell-Skript z.B. von der passenden Shell ausgeführt. Die Ausführung führt nicht zu einem Fehler, weil das Zeichen &quot;#&quot; für einen Kommentar steht.&lt;br /&gt;
 
    </content:encoded>

    <pubDate>Tue, 29 May 2007 08:00:44 +0200</pubDate>
    <guid isPermaLink="false">http://www.lpi-certification.de/archives/102-guid.html</guid>
    
</item>
<item>
    <title>Funktionen auf der bash</title>
    <link>http://www.lpi-certification.de/archives/101-Funktionen-auf-der-bash.html</link>
            <category>117-102-109</category>
    
    <comments>http://www.lpi-certification.de/archives/101-Funktionen-auf-der-bash.html#comments</comments>
    <wfw:comment>http://www.lpi-certification.de/wfwcomment.php?cid=101</wfw:comment>

    <slash:comments>0</slash:comments>
    <wfw:commentRss>http://www.lpi-certification.de/rss.php?version=2.0&amp;type=comments&amp;cid=101</wfw:commentRss>
    

    <author>nospam@example.com (LPIC)</author>
    <content:encoded>
    Die bash kennt auch Funktionen. &lt;br /&gt;
Damit kann man eine Serie von Befehlen zu einem zusammenfassen:&lt;br /&gt;
&lt;blockquote&gt;&lt;strong&gt;function&lt;/strong&gt; name ()&lt;br /&gt;
{&lt;br /&gt;
        Befehl1&lt;br /&gt;
        Befehl2&lt;br /&gt;
        Befehl3&lt;br /&gt;
}&lt;/blockquote&gt;&lt;br /&gt;
&lt;br /&gt;
Alle zur Zeit deklarierten Funktionen können durch den eingebauten &quot;&lt;strong&gt;declare&lt;/strong&gt;&quot;-Befehl mit der Option &quot;&lt;strong&gt;-f&lt;/strong&gt;&quot; angezeigt werden. 
    </content:encoded>

    <pubDate>Tue, 29 May 2007 00:05:03 +0200</pubDate>
    <guid isPermaLink="false">http://www.lpi-certification.de/archives/101-guid.html</guid>
    
</item>
<item>
    <title>Drucker-Subsystem konfigurieren</title>
    <link>http://www.lpi-certification.de/archives/100-Drucker-Subsystem-konfigurieren.html</link>
            <category>117-102-107</category>
    
    <comments>http://www.lpi-certification.de/archives/100-Drucker-Subsystem-konfigurieren.html#comments</comments>
    <wfw:comment>http://www.lpi-certification.de/wfwcomment.php?cid=100</wfw:comment>

    <slash:comments>0</slash:comments>
    <wfw:commentRss>http://www.lpi-certification.de/rss.php?version=2.0&amp;type=comments&amp;cid=100</wfw:commentRss>
    

    <author>nospam@example.com (LPIC)</author>
    <content:encoded>
    Der &quot;&lt;strong&gt;lpr&lt;/strong&gt;&quot; (line printer daemon) schickt die Drucker aus der Warteschlange zu dem Drucker.&lt;br /&gt;
&lt;br /&gt;
In der &quot;&lt;strong&gt;/etc/printcap&lt;/strong&gt;&quot; sind die Druckerfilter und Spool-Dateien eingetragen.&lt;br /&gt;
&lt;br /&gt;
Ghostscript wird hier häufig als Filter im Drucksystem konfiguriert. Wie ein Treiber für bestimmte Drucker kann er Postscript in spezifische Druckbefehle umwandeln. Damit kann man mit Programmen, die eine Postscript-Ausgabe erzeugen auf Druckern drucken, die selbst kein Postscript beherrschen.&lt;br /&gt;
&lt;br /&gt;
Üblicher Speicherort für die Druckerwarteschlange ist &quot;&lt;strong&gt;/var/spool/lpd&lt;/strong&gt;&quot;.&lt;br /&gt;
&lt;br /&gt;
Die Verwaltung des Drucksystems erfolgt heute üblicherweise über &lt;a href=&quot;http://www.danka.de/printpro/faq.html&quot; &gt;&lt;strong&gt;CUPS&lt;/strong&gt;&lt;/a&gt; (Common UNIX Printing System). 
    </content:encoded>

    <pubDate>Mon, 28 May 2007 23:28:26 +0200</pubDate>
    <guid isPermaLink="false">http://www.lpi-certification.de/archives/100-guid.html</guid>
    
</item>
<item>
    <title>Firewall konfigurieren</title>
    <link>http://www.lpi-certification.de/archives/99-Firewall-konfigurieren.html</link>
            <category>117-102-114</category>
    
    <comments>http://www.lpi-certification.de/archives/99-Firewall-konfigurieren.html#comments</comments>
    <wfw:comment>http://www.lpi-certification.de/wfwcomment.php?cid=99</wfw:comment>

    <slash:comments>0</slash:comments>
    <wfw:commentRss>http://www.lpi-certification.de/rss.php?version=2.0&amp;type=comments&amp;cid=99</wfw:commentRss>
    

    <author>nospam@example.com (LPIC)</author>
    <content:encoded>
    Das Kernstück zu Handhabung der Firewall ab Linux Kernel 2.4 ist &quot;&lt;strong&gt;iptables&lt;/strong&gt;&quot;. Hiermit kann ein regelbasierter Paket-Filter aufgebaut werden.&lt;br /&gt;
&lt;br /&gt;
Mit der Option &quot;&lt;strong&gt;-L&lt;/strong&gt;&quot; kann man sich alle Regeln anzeigen lassen.&lt;br /&gt;
&lt;br /&gt;
Die Option &quot;-t&quot; ist nützlich, um sich nur einen bestimmten Typ von Regeln ausgeben zu lassen, z.B. alle Regeln zum Masquerading (auch als NAT bekannt) mit &quot;&lt;strong&gt;-t NAT&lt;/strong&gt;&quot;.&lt;br /&gt;
 
    </content:encoded>

    <pubDate>Mon, 28 May 2007 11:10:38 +0200</pubDate>
    <guid isPermaLink="false">http://www.lpi-certification.de/archives/99-guid.html</guid>
    
</item>
<item>
    <title>Secure Shell OpenSSH einrichten</title>
    <link>http://www.lpi-certification.de/archives/98-Secure-Shell-OpenSSH-einrichten.html</link>
            <category>117-102-114</category>
    
    <comments>http://www.lpi-certification.de/archives/98-Secure-Shell-OpenSSH-einrichten.html#comments</comments>
    <wfw:comment>http://www.lpi-certification.de/wfwcomment.php?cid=98</wfw:comment>

    <slash:comments>0</slash:comments>
    <wfw:commentRss>http://www.lpi-certification.de/rss.php?version=2.0&amp;type=comments&amp;cid=98</wfw:commentRss>
    

    <author>nospam@example.com (LPIC)</author>
    <content:encoded>
    Das Programm &quot;&lt;strong&gt;ssh-keygen&lt;/strong&gt;&quot; kann RSA- und TSA-Schlüsselpaare für SSH2 erzeugen. Damit kann man ein &lt;a href=&quot;http://wiki.linux-club.de/opensuse/Einrichten_von_public_keys_mit_ssh#Publickey-Authentifizierung&quot; &gt;einloggen ohne Passwort&lt;/a&gt; erreichen. 
    </content:encoded>

    <pubDate>Mon, 28 May 2007 10:52:43 +0200</pubDate>
    <guid isPermaLink="false">http://www.lpi-certification.de/archives/98-guid.html</guid>
    
</item>

</channel>
</rss>