MosNis-Wikibook/Installation/Betriebssystemintegration/Fedora: Unterschied zwischen den Versionen
K |
K (1 Versionen) |
(kein Unterschied)
|
Aktuelle Version vom 14. Januar 2008, 18:09 Uhr
MosNis: Intro - Installation->:Voraussetzungen - Servergrundeinrichtung - Betriebssystemintegration-> - Fedora - Wartungstoolintegration - Sonstiges - Automatisierung(AutoMosNis) - Schlusswort |
MosNis-Wikibook/Installation/Betriebssystemintegration/Fedora
Inhaltsverzeichnis
Fedora
Da bei Fedora genau wie bei openSUSE sowohl die 32 Bit als auch die 64 Bit Version identisch zu handhaben sind, wird im weiteren nur von Fedora, nicht jedoch von 32 Bit oder 64 Bit die Rede sein. Diese Anleitung zeigt die Integration von Fedora in den MosNis anhand Fedora Core 5.Andere versionen (wie auch CentOS oder xoslinux) sind äquivalent zu handhaben. Nennenswerte Differenzen zu Fedora Core 5 werden in den Menüabschnitten vermerkt werden. Als erstes mounten wir die DVD oder das DVD-ISO-Image. Dann legen wir eine passende Verzeichnisstruktur im Installationsserververzeichnis an mit
mkdir /Installserver/FedoraCore/FC5/i386
bzw.
mkdir /Installserver/FedoraCore/FC5/x86-64
und kopieren den gesamten Inhalt der DVDs bzw. der ISO-Images dort hinein. Für den zu bootenden Kernel legen wir im Hauptverzeichnis des TFTP-Servers passende Unterverzeichnisse an in die wir die zur jeweiligen Architektur passenden Kernelimages und Initialramdiskimages legen. Dies erledigen wir wieder mit
mkdir /tftpboot/FedoraCore/FC5/i386
und
mkdir /tftpboot/FedoraCore/FC5/x86-64
Dorthin kopieren wir dann die Dateien
/Installserver/FedoraCore/FC5/i386/isolinux/initrd.img
und müssen dabei allerdings das .img am Dateiende entfernen, da PXE-Linux diese Endung bereits für Disketetnimages reserviert hat,sowei die Datei
/Installserver/FedoraCore/FC5/i386/isolinux/vmlinuz
die ja der zu nutzende Kernel ist,bzw. Äquivalentes für die 64 Bit Version. Wenn mit Kickstart gearbeitet werden soll für unbeaufsichtigte Installationen, installieren wir noch den kickstart-Konfigurator auf einem bereits Fedora Core laufenden Rechner per Yum oder per rpm -Uvh <paketname> und erstellen damit eine passende Datei namens ks.cfg (Näheres dazu dann später im AutoMosNis-Abschnitt). Diese benennen wir in z.B. ks32-1.cfg für 32 Bit Systeme oder ks64-1.cfg für 64 Bit Systeme um, und legen noch ein Verzeichnis dafür im Installationsserververzeichnis an mit
mkdir /Installserver/FedoraCore/FC5/kickstart
wohin wir die eben erstellte Datei dann kopieren oder verschieben. Danach legen wir die Fedora Core 5 Menüdateien für den PXE-Linux Bootloader an:
Die Menüs
Fedora Core 5
Das Fedora Core Hauptauswahlmenü /tftpboot/FC5.conf:
DEFAULT menu.c32
PROMPT 0
MENU TITLE FedoraCore 5
# 64 Bit NFS
LABEL FC564NFS
MENU LABEL FedoraCore 5 64 Bit NFS
KERNEL menu.c32
APPEND FC564NFS.conf
# 64 Bit FTP
LABEL FC564FTP
MENU LABEL FedoraCore 5 64 Bit FTP
KERNEL menu.c32
APPEND FC564FTP.conf
# 64 Bit HTTP
LABEL FC564HTTP
MENU LABEL FedoraCore 5 64 Bit HTTP
KERNEL menu.c32
APPEND FC564HTTP.conf
# 64 Bit SMB
LABEL FC564SMB
MENU LABEL FedoraCore 5 64 Bit SMB
KERNEL menu.c32
APPEND FC564SMB.conf
# 32 Bit NFS
LABEL FC532NFS
MENU LABEL FedoraCore 5 32 Bit NFS
KERNEL menu.c32
APPEND FC532NFS.conf
# 32 Bit FTP
LABEL FC532FTP
MENU LABEL FedoraCore 5 32 Bit FTP
KERNEL menu.c32
APPEND FC532FTP.conf
# 32 Bit HTTP
LABEL FC532HTTP
MENU LABEL FedoraCore 5 32 Bit HTTP
KERNEL menu.c32
APPEND FC532HTTP.conf
# 32 Bit SMB
LABEL FC532SMB
MENU LABEL FedoraCore 5 32 Bit SMB
KERNEL menu.c32
APPEND FC532SMB.conf
# Hauptauswahl
LABEL mainback
MENU LABEL Zur Hauptauswahl
KERNEL menu.c32
APPEND MAIN.conf
#Deutsche Tastaturbelegung
KBDMAP german.kbd
#Menüeinstellungen
MENU WIDTH 80
MENU MARGIN 10
MENU ROWS 12
MENU TABMSGROW 18
MENU CMDLINEROW 12
MENU ENDROW 24
MENU TIMEOUTROW 20
ONTIMEOUT mainback
TIMEOUT 200
#Hilfstexte
F1 fc-boot.msg
F2 fc-general.txt
F3 fc-options.txt
F4 fc-param.txt
F5 fc-rescue.txt
F6 Hauptauswahl.txt
Die Textmenüs:
/tftpboot/FC564NFS.conf :
DEFAULT menu.c32
PROMPT 0
MENU TITLE FedoraCore 5 64 Bit per NFS
# 64Bit NFS install
LABEL Linux64NFSManual
MENU LABEL FedoraCore 5 64 Bit Manuelle Installation
KERNEL FedoraCore/FC5/x86-64/vmlinuz
APPEND initrd=FedoraCore/FC5/x86-64/initrd ip=dhcp \
method=nfs://192.168.2.1/Installserver/FedoraCore/FC5/x86-64/
# 64Bit NFS install noprobe
LABEL Linux64NFSManualnoprobe
MENU LABEL FedoraCore 5 64 Bit Manuelle Installation noprobe
KERNEL FEdoraCore/FC5/x86-64/vmlinuz
APPEND initrd=FedoraCore/FC5/x86-64/initrd noprobe ip=dhcp \
method=nfs://192.168.2.1/Installserver/FedoraCore/FC5/x86-64/
# 64Bit NFS install Textmode
LABEL Linux64NFSManualText
MENU LABEL FedoraCore 5 64 Bit Manuelle Installation im Textmode
KERNEL FedoraCore/FC5/x86-64/vmlinuz
APPEND initrd=FedoraCore/FC5/x86-64/initrd text ip=dhcp \
method=nfs://192.168.2.1/Installserver/FedoraCore/FC5/x86-64/
# 64Bit NFS Kickstart
LABEL Linux64NFSkickstart
MENU LABEL FedoraCore 5 64 Bit Kickstart Installation
KERNEL FedoraCore/FC5/x86-64/vmlinuz
APPEND ks=nfs://192.168.2.1/Installserver/FedoraCore/FC5/kickstart/ks64-1.cfg \
initrd=FedoraCore/FC5/x86-64/initrd ip=dhcp \
method=nfs://192.168.2.1/Installserver/FedoraCore/FC5/x86-64/
# 64Bit NFS mit VNC
LABEL Linux64NFSrescue
MENU LABEL FedoraCore 5 64 Bit VNC gesteuerte Installation
KERNEL FedoraCore/FC5/x86-64/vmlinuz
APPEND initrd=FedoraCore/FC5/x86-64/initrd vnc vncpassword=fedoracore ip=dhcp \
method=nfs://192.168.2.1/Installserver/FedoraCore/FC5/x86-64/
# FedoraCore
LABEL back
MENU LABEL FedoraCore Auswahl
KERNEL menu.c32
APPEND FC5.conf
#Deutsche Tastaturbelegung
KBDMAP german.kbd
#Menüeinstellungen
MENU WIDTH 80
MENU MARGIN 10
MENU ROWS 12
MENU TABMSGROW 18
MENU CMDLINEROW 12
MENU ENDROW 24
MENU TIMEOUTROW 20
ONTIMEOUT back
TIMEOUT 200
#Hilfstexte
F1 FC-Hilfe2.txt
F2 Hauptauswahl.txt
/tftpboot/FC564FTP.conf :
DEFAULT menu.c32
PROMPT 0
MENU TITLE FedoraCore 5 64 Bit per FTP
# 64Bit FTP install
LABEL Linux64FTPManual
MENU LABEL FedoraCore 5 64 Bit Manuelle Installation
KERNEL FedoraCore/FC5/x86-64/vmlinuz
APPEND initrd=FedoraCore/FC5/x86-64/initrd ip=dhcp \
method=ftp://192.168.2.1/Installserver/FedoraCore/FC5/x86-64/
# 64Bit FTP install noprobe
LABEL Linux64FTPManualnoprobe
MENU LABEL FedoraCore 5 64 Bit Manuelle Installation noprobe
KERNEL FEdoraCore/FC5/x86-64/vmlinuz
APPEND initrd=FedoraCore/FC5/x86-64/initrd noprobe ip=dhcp \
method=ftp://192.168.2.1/Installserver/FedoraCore/FC5/x86-64/
# 64Bit FTP install Textmode
LABEL Linux64FTPManualText
MENU LABEL FedoraCore 5 64 Bit Manuelle Installation im Textmode
KERNEL FedoraCore/FC5/x86-64/vmlinuz
APPEND initrd=FedoraCore/FC5/x86-64/initrd text ip=dhcp \
method=ftp://192.168.2.1/Installserver/FedoraCore/FC5/x86-64/
# 64Bit FTP Kickstart
LABEL Linux64FTPkickstart
MENU LABEL FedoraCore 5 64 Bit Kickstart Installation
KERNEL FedoraCore/FC5/x86-64/vmlinuz
APPEND ks=ftp://192.168.2.1/Installserver/FedoraCore/FC5/kickstart/ks64-1.cfg \
initrd=FedoraCore/FC5/x86-64/initrd ip=dhcp \
method=ftp://192.168.2.1/Installserver/FedoraCore/FC5/x86-64/
# 64Bit FTP mit VNC
LABEL Linux64FTPremote
MENU LABEL FedoraCore 5 64 Bit VNC gesteuerte Installation
KERNEL FedoraCore/FC5/x86-64/vmlinuz
APPEND initrd=FedoraCore/FC5/x86-64/initrd vnc vncpassword=fedoracore ip=dhcp \
method=ftp://192.168.2.1/Installserver/FedoraCore/FC5/x86-64/
# FedoraCore
LABEL back
MENU LABEL FedoraCore Auswahl
KERNEL menu.c32
APPEND FC5.conf
#Deutsche Tastaturbelegung
KBDMAP german.kbd
#Menüeinstellungen
MENU WIDTH 80
MENU MARGIN 10
MENU ROWS 12
MENU TABMSGROW 18
MENU CMDLINEROW 12
MENU ENDROW 24
MENU TIMEOUTROW 20
ONTIMEOUT back
TIMEOUT 200
#Hilfstexte
F1 FC-Hilfe2.txt
F2 Hauptauswahl.txt
/tftpboot/FC564HTTP.conf :
DEFAULT menu.c32
PROMPT 0
MENU TITLE FedoraCore 5 64 Bit per HTTP
# 64Bit HTTP install
LABEL Linux64HTTPManual
MENU LABEL FedoraCore 5 64 Bit Manuelle Installation
KERNEL FedoraCore/FC5/x86-64/vmlinuz
APPEND initrd=FedoraCore/FC5/x86-64/initrd ip=dhcp \
method=http://192.168.2.1/Installserver/FedoraCore/FC5/x86-64/
# 64Bit HTTP install noprobe
LABEL Linux64HTTPManualnoprobe
MENU LABEL FedoraCore 5 64 Bit Manuelle Installation noprobe
KERNEL FEdoraCore/FC5/x86-64/vmlinuz
APPEND initrd=FedoraCore/FC5/x86-64/initrd noprobe ip=dhcp \
method=http://192.168.2.1/Installserver/FedoraCore/FC5/x86-64/
# 64Bit HTTP install Textmode
LABEL Linux64HTTPManualText
MENU LABEL FedoraCore 5 64 Bit Manuelle Installation im Textmode
KERNEL FedoraCore/FC5/x86-64/vmlinuz
APPEND initrd=FedoraCore/FC5/x86-64/initrd text ip=dhcp \
method=http://192.168.2.1/Installserver/FedoraCore/FC5/x86-64/
# 64Bit HTTP Kickstart
LABEL Linux64HTTPkickstart
MENU LABEL FedoraCore 5 64 Bit Kickstart Installation
KERNEL FedoraCore/FC5/x86-64/vmlinuz
APPEND ks=http://192.168.2.1/Installserver/FedoraCore/FC5/kickstart/ks64-1.cfg \
initrd=FedoraCore/FC5/x86-64/initrd ip=dhcp \
method=http://192.168.2.1/Installserver/FedoraCore/FC5/x86-64/
# 64Bit HTTP mit VNC
LABEL Linux64HTTPremote
MENU LABEL FedoraCore 5 64 Bit VNC gesteuerte Installation
KERNEL FedoraCore/FC5/x86-64/vmlinuz
APPEND initrd=FedoraCore/FC5/x86-64/initrd vnc vncpassword=fedoracore ip=dhcp \
method=http://192.168.2.1/Installserver/FedoraCore/FC5/x86-64/
# FedoraCore
LABEL back
MENU LABEL FedoraCore Auswahl
KERNEL menu.c32
APPEND FC5.conf
#Deutsche Tastaturbelegung
KBDMAP german.kbd
#Menüeinstellungen
MENU WIDTH 80
MENU MARGIN 10
MENU ROWS 12
MENU TABMSGROW 18
MENU CMDLINEROW 12
MENU ENDROW 24
MENU TIMEOUTROW 20
ONTIMEOUT back
TIMEOUT 200
#Hilfstexte
F1 FC-Hilfe2.txt
F2 Hauptauswahl.txt
/tftpboot/FC564SMB.conf :
DEFAULT menu.c32
PROMPT 0
MENU TITLE FedoraCore 5 64 Bit per SMB
# 64Bit SMB install
LABEL Linux64SMBManual
MENU LABEL FedoraCore 5 64 Bit Manuelle Installation
KERNEL FedoraCore/FC5/x86-64/vmlinuz
APPEND initrd=FedoraCore/FC5/64Bit/initrd ip=dhcp \
method=smb://192.168.2.1/Installserver/FedoraCore/FC5/x86-64/
# 64Bit SMB install noprobe
LABEL Linux64SMBManualnoprobe
MENU LABEL FedoraCore 5 64 Bit Manuelle Installation noprobe
KERNEL FEdoraCore/FC5/x86-64/vmlinuz
APPEND initrd=FedoraCore/FC5/x86-64/initrd noprobe ip=dhcp \
method=smb://192.168.2.1/Installserver/FedoraCore/FC5/x86-64/
# 64Bit SMB install Textmode
LABEL Linux64SMBManualText
MENU LABEL FedoraCore 5 64 Bit Manuelle Installation im Textmode
KERNEL FedoraCore/FC5/x86-64/vmlinuz
APPEND initrd=FedoraCore/FC5/x86-64/initrd text ip=dhcp \
method=smb://192.168.2.1/Installserver/FedoraCore/FC5/x86-64/
# 64Bit SMB Kickstart
LABEL Linux64SMBkickstart
MENU LABEL FedoraCore 5 64 Bit Kickstart Installation
KERNEL FedoraCore/FC5/x86-64/vmlinuz
APPEND ks=smb://192.168.2.1/Installserver/FedoraCore/FC5/kickstart/ks64-1.cfg \
initrd=FedoraCore/FC5/x86-64/initrd ip=dhcp \
method=smb://192.168.2.1/Installserver/FedoraCore/FC5/x86-64/
# 64Bit SMB mit VNC
LABEL Linux64SMBremote
MENU LABEL FedoraCore 5 64 Bit VNC gesteuerte Installation
KERNEL FedoraCore/FC5/x86-64/vmlinuz
APPEND initrd=FedoraCore/FC5/x86-64/initrd vnc vncpassword=fedoracore ip=dhcp \
method=smb://192.168.2.1/Installserver/FedoraCore/FC5/x86-64/
# FedoraCore
LABEL back
MENU LABEL FedoraCore Auswahl
KERNEL menu.c32
APPEND FC5.conf
#Deutsche Tastaturbelegung
KBDMAP german.kbd
#Menüeinstellungen
MENU WIDTH 80
MENU MARGIN 10
MENU ROWS 12
MENU TABMSGROW 18
MENU CMDLINEROW 12
MENU ENDROW 24
MENU TIMEOUTROW 20
ONTIMEOUT back
TIMEOUT 200
#Hilfstexte
F1 FC-Hilfe2.txt
F2 Hauptauswahl.txt
/tftpboot/FC532NFS.conf :
DEFAULT menu.c32
PROMPT 0
MENU TITLE FedoraCore 5 32 Bit per NFS
# 32Bit NFS install
LABEL Linux32NFSManual
MENU LABEL FedoraCore 5 32 Bit Manuelle Installation
KERNEL FedoraCore/FC5/i386/vmlinuz
APPEND initrd=FedoraCore/FC5/i386/initrd ip=dhcp \
method=nfs://192.168.2.1/Installserver/FedoraCore/FC5/i386/
# 32Bit NFS install noprobe
LABEL Linux32NFSManualnoprobe
MENU LABEL FedoraCore 5 32 Bit Manuelle Installation noprobe
KERNEL FEdoraCore/FC5/i386/vmlinuz
APPEND initrd=FedoraCore/FC5/i386/initrd noprobe ip=dhcp \
method=nfs://192.168.2.1/Installserver/FedoraCore/FC5/i386/
# 32Bit NFS install Textmode
LABEL Linux32NFSManualText
MENU LABEL FedoraCore 5 32 Bit Manuelle Installation im Textmode
KERNEL FedoraCore/FC5/i386/vmlinuz
APPEND initrd=FedoraCore/FC5/i386/initrd text ip=dhcp \
method=nfs://192.168.2.1/Installserver/FedoraCore/FC5/i386/
# 32Bit NFS Kickstart
LABEL Linux32NFSkickstart
MENU LABEL FedoraCore 5 32 Bit Kickstart Installation
KERNEL FedoraCore/FC5/i386/vmlinuz
APPEND ks=nfs://192.168.2.1/Installserver/FedoraCore/FC5/kickstart/ks32-1.cfg \
initrd=FedoraCore/FC5/i386/initrd ip=dhcp \
method=nfs://192.168.2.1/Installserver/FedoraCore/FC5/i386/
# 32Bit NFS mit VNC
LABEL Linux32NFSremote
MENU LABEL FedoraCore 5 32 Bit VNC gesteuerte Installation
KERNEL FedoraCore/FC5/i386/vmlinuz
APPEND initrd=FedoraCore/FC5/i386/initrd vnc vncpassword=fedoracore ip=dhcp \
method=nfs://192.168.2.1/Installserver/FedoraCore/FC5/i386/
# FedoraCore
LABEL back
MENU LABEL FedoraCore Auswahl
KERNEL menu.c32
APPEND FC5.conf
#Deutsche Tastaturbelegung
KBDMAP german.kbd
#Menüeinstellungen
MENU WIDTH 80
MENU MARGIN 10
MENU ROWS 12
MENU TABMSGROW 18
MENU CMDLINEROW 12
MENU ENDROW 24
MENU TIMEOUTROW 20
ONTIMEOUT back
TIMEOUT 200
#Hilfstexte
F1 FC-Hilfe2.txt
F2 Hauptauswahl.txt
/tftpboot/FC532FTP.conf :
DEFAULT menu.c32
PROMPT 0
MENU TITLE FedoraCore 5 32 Bit per FTP
# 32Bit FTP install
LABEL Linux32FTPManual
MENU LABEL FedoraCore 5 32 Bit Manuelle Installation
KERNEL FedoraCore/FC5/i386/vmlinuz
APPEND initrd=FedoraCore/FC5/i386/initrd ip=dhcp \
method=ftp://192.168.2.1/Installserver/FedoraCore/FC5/i386/
# 32Bit FTP install noprobe
LABEL Linux32FTPManualnoprobe
MENU LABEL FedoraCore 5 32 Bit Manuelle Installation noprobe
KERNEL FEdoraCore/FC5/i386/vmlinuz
APPEND initrd=FedoraCore/FC5/i386/initrd noprobe ip=dhcp \
method=ftp://192.168.2.1/Installserver/FedoraCore/FC5/i386/
# 32Bit FTP install Textmode
LABEL Linux32FTPManualText
MENU LABEL FedoraCore 5 32 Bit Manuelle Installation im Textmode
KERNEL FedoraCore/FC5/i386/vmlinuz
APPEND initrd=FedoraCore/FC5/i386/initrd text ip=dhcp \
method=ftp://192.168.2.1/Installserver/FedoraCore/FC5/i386/
# 32Bit FTP Kickstart
LABEL Linux32FTPkickstart
MENU LABEL FedoraCore 5 32 Bit Kickstart Installation
KERNEL FedoraCore/FC5/i386/vmlinuz
APPEND ks=ftp://192.168.2.1/Installserver/FedoraCore/FC5/kickstart/ks32-1.cfg \
initrd=FedoraCore/FC5/i386/initrd ip=dhcp \
method=ftp://192.168.2.1/Installserver/FedoraCore/FC5/i386/
# 32Bit FTP mit VNC
LABEL Linux32FTPremote
MENU LABEL FedoraCore 5 32 Bit VNC gesteuerte Installation
KERNEL FedoraCore/FC5/i386/vmlinuz
APPEND initrd=FedoraCore/FC5/i386/initrd vnc vncpassword=fedoracore ip=dhcp \
method=ftp://192.168.2.1/Installserver/FedoraCore/FC5/i386/
# FedoraCore
LABEL back
MENU LABEL FedoraCore Auswahl
KERNEL menu.c32
APPEND FC5.conf
#Deutsche Tastaturbelegung
KBDMAP german.kbd
#Menüeinstellungen
MENU WIDTH 80
MENU MARGIN 10
MENU ROWS 12
MENU TABMSGROW 18
MENU CMDLINEROW 12
MENU ENDROW 24
MENU TIMEOUTROW 20
ONTIMEOUT back
TIMEOUT 200
#Hilfstexte
F1 FC-Hilfe2.txt
F2 Hauptauswahl.txt
/tftpboot/FC532HTTP.conf :
DEFAULT menu.c32
PROMPT 0
MENU TITLE FedoraCore 5 32 Bit per HTTP
# 32Bit HTTP install
LABEL Linux32HTTPManual
MENU LABEL FedoraCore 5 32 Bit Manuelle Installation
KERNEL FedoraCore/FC5/i386/vmlinuz
APPEND initrd=FedoraCore/FC5/i386/initrd ip=dhcp \
method=http://192.168.2.1/Installserver/FedoraCore/FC5/i386/
# 32Bit HTTP install noprobe
LABEL Linux32HTTPManualnoprobe
MENU LABEL FedoraCore 5 32 Bit Manuelle Installation noprobe
KERNEL FEdoraCore/FC5/i386/vmlinuz
APPEND initrd=FedoraCore/FC5/i386/initrd noprobe ip=dhcp \
method=http://192.168.2.1/Installserver/FedoraCore/FC5/i386/
# 32Bit HTTP install Textmode
LABEL Linux32HTTPManualText
MENU LABEL FedoraCore 5 32 Bit Manuelle Installation im Textmode
KERNEL FedoraCore/FC5/i386/vmlinuz
APPEND initrd=FedoraCore/FC5/i386/initrd text ip=dhcp \
method=http://192.168.2.1/Installserver/FedoraCore/FC5/i386/
# 32Bit HTTP Kickstart
LABEL Linux32HTTPkickstart
MENU LABEL FedoraCore 5 32 Bit Kickstart Installation
KERNEL FedoraCore/FC5/i386/vmlinuz
APPEND ks=http://192.168.2.1/Installserver/FedoraCore/FC5/kickstart/ks32-1.cfg \
initrd=FedoraCore/FC5/i386/initrd ip=dhcp \
method=http://192.168.2.1/Installserver/FedoraCore/FC5/i386/
# 32Bit HTTP mit VNC
LABEL Linux32HTTPremote
MENU LABEL FedoraCore 5 32 Bit VNC gesteuerte Installation
KERNEL FedoraCore/FC5/i386/vmlinuz
APPEND initrd=FedoraCore/FC5/i386/initrd vnc vncpassword=fedoracore ip=dhcp \
method=http://192.168.2.1/Installserver/FedoraCore/FC5/i386/
# FedoraCore
LABEL back
MENU LABEL FedoraCore Auswahl
KERNEL menu.c32
APPEND FC5.conf
#Deutsche Tastaturbelegung
KBDMAP german.kbd
#Menüeinstellungen
MENU WIDTH 80
MENU MARGIN 10
MENU ROWS 12
MENU TABMSGROW 18
MENU CMDLINEROW 12
MENU ENDROW 24
MENU TIMEOUTROW 20
ONTIMEOUT back
TIMEOUT 200
#Hilfstexte
F1 FC-Hilfe2.txt
F2 Hauptauswahl.txt
/tftpboot/FC532SMB.conf :
DEFAULT menu.c32
PROMPT 0
MENU TITLE FedoraCore 5 32 Bit per SMB
# 32Bit SMB install
LABEL Linux32SMBManual
MENU LABEL FedoraCore 5 32 Bit Manuelle Installation
KERNEL FedoraCore/FC5/i386/vmlinuz
APPEND initrd=FedoraCore/FC5/i386/initrd ip=dhcp \
method=smb://192.168.2.1/Installserver/FedoraCore/FC5/i386/
# 32Bit SMB install noprobe
LABEL Linux32SMBManualnoprobe
MENU LABEL FedoraCore 5 32 Bit Manuelle Installation noprobe
KERNEL FEdoraCore/FC5/i386/vmlinuz
APPEND initrd=FedoraCore/FC5/i386/initrd noprobe ip=dhcp \
method=smb://192.168.2.1/Installserver/FedoraCore/FC5/i386/
# 32Bit SMB install Textmode
LABEL Linux32SMBManualText
MENU LABEL FedoraCore 5 32 Bit Manuelle Installation im Textmode
KERNEL FedoraCore/FC5/i386/vmlinuz
APPEND initrd=FedoraCore/FC5/i386/initrd text ip=dhcp \
method=smb://192.168.2.1/Installserver/FedoraCore/FC5/i386/
# 32Bit SMB Kickstart
LABEL Linux32SMBkickstart
MENU LABEL FedoraCore 5 32 Bit Kickstart Installation
KERNEL FedoraCore/FC5/i386/vmlinuz
APPEND ks=smb://192.168.2.1/Installserver/FedoraCore/FC5/kickstart/ks32-1.cfg \
initrd=FedoraCore/FC5/i386/initrd ip=dhcp \
method=smb://192.168.2.1/Installserver/FedoraCore/FC5/i386/
# 32Bit SMB mit VNC
LABEL Linux32SMBremote
MENU LABEL FedoraCore 5 32 Bit VNC gesteuerte Installation
KERNEL FedoraCore/FC5/i386/vmlinuz
APPEND initrd=FedoraCore/FC5/i386/initrd vnc vncpassword=fedoracore ip=dhcp \
method=smb://192.168.2.1/Installserver/FedoraCore/FC5/i386/
# FedoraCore
LABEL back
MENU LABEL FedoraCore Auswahl
KERNEL menu.c32
APPEND FC.conf
#Deutsche Tastaturbelegung
KBDMAP german.kbd
#Menüeinstellungen
MENU WIDTH 80
MENU MARGIN 10
MENU ROWS 12
MENU TABMSGROW 18
MENU CMDLINEROW 12
MENU ENDROW 24
MENU TIMEOUTROW 20
ONTIMEOUT back
TIMEOUT 200
#Hilfstexte
F1 FC-Hilfe2.txt
F2 Hauptauswahl.txt
Die VESA Grafikmenüs:
MosNis-Wikibook/Installation/Betriebssystemintegration/Fedora/Menüs/FC5/Grafikmenüs
Fedora Core 6
MosNis-Wikibook/Installation/Betriebssystemintegration/Fedora/Menüs/FC6/Hauptmenü
Die Textmenüs:
MosNis-Wikibook/Installation/Betriebssystemintegration/Fedora/Menüs/FC6/Textmenüs
Die VESA Grafikmenüs:
MosNis-Wikibook/Installation/Betriebssystemintegration/Fedora/Menüs/FC6/Grafikmenüs
Fedora 7
MosNis-Wikibook/Installation/Betriebssystemintegration/Fedora/Menüs/F7/Hauptmenü
Die Textmenüs:
MosNis-Wikibook/Installation/Betriebssystemintegration/Fedora/Menüs/F7/Textmenüs
Die VESA Grafikmenüs:
MosNis-Wikibook/Installation/Betriebssystemintegration/Fedora/Menüs/F7/Grafikmenüs
CentOS (ein anderes RedHat Derivat)
MosNis-Wikibook/Installation/Betriebssystemintegration/Fedora/Menüs/CentOS/Hauptmenü
Die Textmenüs:
MosNis-Wikibook/Installation/Betriebssystemintegration/Fedora/Menüs/CentOS/Textmenüs
Die VESA Grafikmenüs:
MosNis-Wikibook/Installation/Betriebssystemintegration/Fedora/Menüs/CentOS/Grafikmenüs
xoslinux(ein weiteres RedHat Derivat)
MosNis-Wikibook/Installation/Betriebssystemintegration/Fedora/Menüs/xoslinux/Hauptmenü
Die Textmenüs:
MosNis-Wikibook/Installation/Betriebssystemintegration/Fedora/Menüs/xoslinux/Textmenüs
Die VESA Grafikmenüs:
MosNis-Wikibook/Installation/Betriebssystemintegration/Fedora/Menüs/xoslinux/Grafikmenüs
MosNis: Intro - Installation->:Voraussetzungen - Servergrundeinrichtung - Betriebssystemintegration-> - Fedora - Wartungstoolintegration - Sonstiges - Automatisierung(AutoMosNis) - Schlusswort |