Crux

Aus VDR Wiki
(Unterschied zwischen Versionen)
Wechseln zu: Navigation, Suche
K (Crux 2.4 (oder höher))
 
(5 dazwischenliegende Versionen von einem Benutzer werden nicht angezeigt)
Zeile 1: Zeile 1:
http://www.fukt.bth.se/~per/crux/logotypes/rl1.gif
 
  
 
==Allgemein==
 
==Allgemein==
'''Crux''' ist eine [[Linux]]-[[Distributionen|Distribution]].<br>
+
'''Crux''' ist eine [[Linux]]-[[Distribution]].<br>
Eine Review von Till Biedermann ist hier zu finden http://www.pl-berichte.de/berichte/cruxlinux2.html (allerdings 2.0).
+
  
 
==Vor- und Nachteile==
 
==Vor- und Nachteile==
Zeile 17: Zeile 15:
 
==Tipps==
 
==Tipps==
 
===How-To CD Remastering (ISO anpassen)===
 
===How-To CD Remastering (ISO anpassen)===
 +
Unter http://crux.nu/Wiki/BuildingISO befindet sich eine Anleitung, zum erstellen eines ISOs, habe das aber selbst nie hinbekommen.
 +
 +
Beschränke mich deshalb, auf das ''Remastern'', der Orginalen Images, da es relativ einfach und fix geht, im Gegensatz zum Howto von oben genannter Adresse, da dort eigentlich alles neu kompiliert werden muß.
 +
 
====Crux 2.3 (oder kleiner)====
 
====Crux 2.3 (oder kleiner)====
 
* Verzeichnis erstellen
 
* Verzeichnis erstellen
Zeile 33: Zeile 35:
  
 
* neues iso erstellen
 
* neues iso erstellen
  mkisofs -publisher CRUX -R -l -L -J -V CRUX -A CRUX -b boot/isolinux/isolinux.bin -c boot/isolinux/isolinux.boot -no-emul-boot -boot-load-size 4 -boot-info-table -o /tmp/crux-2.3-new.iso /tmp/newiso
+
  mkisofs -cache-inodes -publisher CRUX -R -l -L -J -V CRUX -A CRUX -b boot/isolinux/isolinux.bin -c boot/isolinux/isolinux.boot -no-emul-boot -boot-load-size 4 -boot-info-table -o /tmp/crux-2.3-new.iso /tmp/newiso
  
 
====Crux 2.4 (oder höher)====
 
====Crux 2.4 (oder höher)====
Zeile 59: Zeile 61:
  
 
* squashfs erzeugen
 
* squashfs erzeugen
  mksquashfs /tmp/newiso/squashfs crux.squashfs
+
rm crux.squashfs
 +
  mksquashfs squashfs crux.squashfs
  
 
* Verzeichnis löschen
 
* Verzeichnis löschen
Zeile 65: Zeile 68:
  
 
* neues iso erstellen
 
* neues iso erstellen
  mkisofs -publisher CRUX -R -l -L -J -V CRUX -A CRUX -b boot/isolinux/isolinux.bin -c boot/isolinux/isolinux.boot -no-emul-boot -boot-load-size 4 -boot-info-table -o /tmp/crux-2.5-new.iso /tmp/newiso
+
  mkisofs -cache-inodes -publisher CRUX -R -l -L -J -V CRUX -A CRUX -b boot/isolinux/isolinux.bin -c boot/isolinux/isolinux.boot -no-emul-boot -boot-load-size 4 -boot-info-table -o /tmp/crux-2.5-new.iso /tmp/newiso
  
 
==Links==
 
==Links==

Aktuelle Version vom 4. August 2013, 20:10 Uhr

Inhaltsverzeichnis

[Bearbeiten] Allgemein

Crux ist eine Linux-Distribution.

[Bearbeiten] Vor- und Nachteile

- Port System ist etwas rudimentär.
- Kein Mirror System vorhanden.
+ Sehr übersichtlich.
+ Kurze Bootzeiten.

[Bearbeiten] Installations-anleitungen

[Bearbeiten] Tipps

[Bearbeiten] How-To CD Remastering (ISO anpassen)

Unter http://crux.nu/Wiki/BuildingISO befindet sich eine Anleitung, zum erstellen eines ISOs, habe das aber selbst nie hinbekommen.

Beschränke mich deshalb, auf das Remastern, der Orginalen Images, da es relativ einfach und fix geht, im Gegensatz zum Howto von oben genannter Adresse, da dort eigentlich alles neu kompiliert werden muß.

[Bearbeiten] Crux 2.3 (oder kleiner)

  • Verzeichnis erstellen
mkdir -p /mnt/iso
  • iso mounten (fett makiert, das Orginal ISO)
mount -t iso9660 -o ro,loop=/dev/loop0 /tmp/crux-2.3.iso /mnt/iso
  • kopieren
cp -rv /mnt/iso /tmp/newiso
  • ins verzeichnis wechseln
cd /tmp/newiso

Hier könnte, dann das ISO angepasst werden.

  • neues iso erstellen
mkisofs -cache-inodes -publisher CRUX -R -l -L -J -V CRUX -A CRUX -b boot/isolinux/isolinux.bin -c boot/isolinux/isolinux.boot -no-emul-boot -boot-load-size 4 -boot-info-table -o /tmp/crux-2.3-new.iso /tmp/newiso

[Bearbeiten] Crux 2.4 (oder höher)

Seit 2.4 kommt squashfs zum Einsatz, die Schritte lauten wie folgt.

  • Verzeichnisse erstellen
mkdir -p /mnt/{iso,squashfs}
  • iso mounten (fett makiert, das Orginal ISO)
mount -t iso9660 -o ro,loop=/dev/loop0 /tmp/crux-2.5.iso /mnt/iso
  • kopieren
cp -rv /mnt/iso /tmp/newiso
  • ins verzeichnis wechseln
cd /tmp/newiso
  • squashfs mounten
mount -t squashfs -o loop,ro crux.squashfs /mnt/squashfs
  • kopieren
cp -rv /mnt/squashfs /tmp/newiso/squashfs

Hier könnte, dann das ISO angepasst werden.

  • squashfs erzeugen
rm crux.squashfs
mksquashfs squashfs crux.squashfs
  • Verzeichnis löschen
rm -rf squashfs
  • neues iso erstellen
mkisofs -cache-inodes -publisher CRUX -R -l -L -J -V CRUX -A CRUX -b boot/isolinux/isolinux.bin -c boot/isolinux/isolinux.boot -no-emul-boot -boot-load-size 4 -boot-info-table -o /tmp/crux-2.5-new.iso /tmp/newiso

[Bearbeiten] Links

  1. Homepage
In anderen Sprachen