<?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 - 117-101-102</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>Definition der Runlevel in der &quot;inittab&quot;</title>
    <link>http://www.lpi-certification.de/archives/56-Definition-der-Runlevel-in-der-inittab.html</link>
            <category>117-101-102</category>
    
    <comments>http://www.lpi-certification.de/archives/56-Definition-der-Runlevel-in-der-inittab.html#comments</comments>
    <wfw:comment>http://www.lpi-certification.de/wfwcomment.php?cid=56</wfw:comment>

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

    <author>nospam@example.com (LPIC)</author>
    <content:encoded>
    In der &quot;&lt;strong&gt;/etc/inittab&lt;/strong&gt;&quot; ist definiert welcher Runlevel nach dem Start angestrebt werden soll und welche Dienste bei dem Wechsel der Runlevel zu starten sind. Die Datenfelder sind durch Semikola getrennt.&lt;br /&gt;
&lt;br /&gt;
Die &quot;/etc/inittab&quot; wird nach Änderungen mit &quot;&lt;strong&gt;init q&lt;/strong&gt;&quot; neu eingelesen. Ein Reboot ist nicht erforderlich (ist doch kein Windows).&lt;br /&gt;
&lt;a href=&quot;http://ftp.roko.goe.net/linux-archiv/handbuch1/docs/lhb/node721.html&quot; &gt;http://ftp.roko.goe.net/.../node721.html&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
Im ersten Feld ist ein Label, das nur einmal vorkommen soll.&lt;br /&gt;
&lt;br /&gt;
Das zweite Feld enthält den Runlevel, zu dem das Programm im letzten Feld zu starten ist.&lt;br /&gt;
&lt;br /&gt;
Optionen wie &quot;&lt;strong&gt;wait&lt;/strong&gt;&quot;, &quot;&lt;strong&gt;once&lt;/strong&gt;&quot; oder &quot;&lt;strong&gt;respawn&lt;/strong&gt;&quot; geben an, wie der Aufruf des Programms durchzuführen ist.&lt;br /&gt;
&lt;br /&gt;
Der &quot;initdefault&quot; gibt an welcher Runlevel vom init-Prozess nach dem Start angestrebt werden soll:&lt;blockquote&gt;# The default runlevel is defined here&lt;br /&gt;
id:5:initdefault:&lt;/blockquote&gt;&lt;br /&gt;
&lt;br /&gt;
Auch die Aktion für die finale Geierkralle &quot;Strg+Alt+Ent&quot; kann hier konfiguriert werden wie hier bei SuSE:&lt;blockquote&gt;# what to do when CTRL-ALT-DEL is pressed&lt;br /&gt;
ca::ctrlaltdel:/sbin/shutdown -r -t 4 now&lt;/blockquote&gt;&lt;br /&gt;
 
    </content:encoded>

    <pubDate>Tue, 02 Jan 2007 23:35:38 +0100</pubDate>
    <guid isPermaLink="false">http://www.lpi-certification.de/archives/56-guid.html</guid>
    
</item>
<item>
    <title>Festplatte partitionieren und Dateisystem einrichten</title>
    <link>http://www.lpi-certification.de/archives/53-Festplatte-partitionieren-und-Dateisystem-einrichten.html</link>
            <category>117-101-102</category>
    
    <comments>http://www.lpi-certification.de/archives/53-Festplatte-partitionieren-und-Dateisystem-einrichten.html#comments</comments>
    <wfw:comment>http://www.lpi-certification.de/wfwcomment.php?cid=53</wfw:comment>

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

    <author>nospam@example.com (LPIC)</author>
    <content:encoded>
    Festplatten haben keine Laufwerksbuchstaben sondern einen Devicenamen, von &quot;hda&quot; bis &quot;hdd&quot; für die IDE-Festplatten und &quot;sda&quot; bis &quot;sdh&quot; für die SCSI-Festplatten.&lt;br /&gt;
&lt;br /&gt;
Darauf werden Partitionen angelegt, primäre von &quot;&lt;strong&gt;hda1&lt;/strong&gt;&quot; bis &quot;&lt;strong&gt;hda4&lt;/strong&gt;&quot; und erweiterte folgend.&lt;br /&gt;
&lt;br /&gt;
Mit &quot;&lt;strong&gt;fdisk -l /dev/hda&lt;/strong&gt;&quot; kann man sich z.B. die Partitionen der erste IDE-Platte anzeigen lassen.&lt;br /&gt;
&lt;br /&gt;
Ablauf zur Verwendung einer neuen Festplatte (macht normal der Installer der Distribution):&lt;br /&gt;
&lt;blockquote&gt;1. Partitionieren mit &quot;fdisk&quot; (das gibts woanders auch)&lt;br /&gt;
2. Dateisystem erstellen mit &quot;mkfs&quot; (woanders als formatieren bekannt)&lt;br /&gt;
3. Dateisystem mit &quot;mount&quot; einbinden (woanders als mappen bekannt)&lt;/blockquote&gt;&lt;br /&gt;
&lt;br /&gt;
Das verbreitetste System war mal &quot;&lt;strong&gt;ext2&lt;/strong&gt;&quot;, heute sollte man das sicherere &quot;&lt;strong&gt;ext3&lt;/strong&gt;&quot; verwenden (hier ist die Option &quot;-j&quot; gefragt!), eine Konvertierung ist ohne Datenverlust möglich. 
    </content:encoded>

    <pubDate>Tue, 02 Jan 2007 20:55:52 +0100</pubDate>
    <guid isPermaLink="false">http://www.lpi-certification.de/archives/53-guid.html</guid>
    
</item>
<item>
    <title>Parameter in der lilo.conf</title>
    <link>http://www.lpi-certification.de/archives/40-Parameter-in-der-lilo.conf.html</link>
            <category>117-101-102</category>
    
    <comments>http://www.lpi-certification.de/archives/40-Parameter-in-der-lilo.conf.html#comments</comments>
    <wfw:comment>http://www.lpi-certification.de/wfwcomment.php?cid=40</wfw:comment>

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

    <author>nospam@example.com (LPIC)</author>
    <content:encoded>
    In der &quot;lilo.conf&quot; kann man z.B. &quot;read-only&quot; einstellen um das Root-Dateisystem nur zum lesen zu mounten.&lt;br /&gt;
&lt;br /&gt;
Der Parameter &quot;root&quot; gibt an welche Partition als Root-Filesystem gemountet werden soll. 
    </content:encoded>

    <pubDate>Tue, 02 Jan 2007 13:59:53 +0100</pubDate>
    <guid isPermaLink="false">http://www.lpi-certification.de/archives/40-guid.html</guid>
    
</item>
<item>
    <title>Debian-Pakete *.deb in Red-Hat-Pakete *.rpm umwandeln</title>
    <link>http://www.lpi-certification.de/archives/38-Debian-Pakete-.deb-in-Red-Hat-Pakete-.rpm-umwandeln.html</link>
            <category>117-101-102</category>
    
    <comments>http://www.lpi-certification.de/archives/38-Debian-Pakete-.deb-in-Red-Hat-Pakete-.rpm-umwandeln.html#comments</comments>
    <wfw:comment>http://www.lpi-certification.de/wfwcomment.php?cid=38</wfw:comment>

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

    <author>nospam@example.com (LPIC)</author>
    <content:encoded>
    Das Programm &quot;&lt;strong&gt;alien&lt;/strong&gt;&quot; kann mit den Optionen &quot;-r&quot; oder &quot;&lt;strong&gt;--to-rpm&lt;/strong&gt;&quot; Debian-Pakete in RPM umwandeln.&lt;br /&gt;
&lt;br /&gt;
Auf einem Debian-System können mit &quot;&lt;strong&gt;alien -i&lt;/strong&gt;&quot; direkt RPM-Dateien installiert werden. 
    </content:encoded>

    <pubDate>Tue, 02 Jan 2007 12:20:14 +0100</pubDate>
    <guid isPermaLink="false">http://www.lpi-certification.de/archives/38-guid.html</guid>
    
</item>
<item>
    <title>Optionen des Debian Package Manager DPKG</title>
    <link>http://www.lpi-certification.de/archives/39-Optionen-des-Debian-Package-Manager-DPKG.html</link>
            <category>117-101-102</category>
    
    <comments>http://www.lpi-certification.de/archives/39-Optionen-des-Debian-Package-Manager-DPKG.html#comments</comments>
    <wfw:comment>http://www.lpi-certification.de/wfwcomment.php?cid=39</wfw:comment>

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

    <author>nospam@example.com (LPIC)</author>
    <content:encoded>
    Ein Programm mit Konfigurationsdateien von einem System entfernen mit &quot;dpkg --purge&quot;.&lt;br /&gt;
&lt;br /&gt;
Den Status eines installierten Pakets im System überprüfen mit &quot;dpkg -s paket&quot; oder &quot;dpkg --status paket&quot;.&lt;br /&gt;
&lt;br /&gt;
Installation eines Pakets mit Optionen &quot;-i&quot; oder &quot;--install&quot;.&lt;br /&gt;
&lt;br /&gt;
Nach unvollständig installierten Paketen suchen mit &quot;-C&quot; oder &quot;--audit&quot;.&lt;br /&gt;
&lt;br /&gt;
Die Datenbank des DPKG liegt unter &quot;/var/lib/dpkg&quot;. 
    </content:encoded>

    <pubDate>Tue, 19 Dec 2006 12:23:00 +0100</pubDate>
    <guid isPermaLink="false">http://www.lpi-certification.de/archives/39-guid.html</guid>
    
</item>

</channel>
</rss>