Installation - Bootloader

Um ein Betriebssystem beim Rechnerstart zu laden, wird prinzipiell ein Bootloader irgend einer Art benötigt. Dieser sitzt an einer Stelle, von der das BIOS automatisch Daten lädt und ausf&umml;hrt.

Der Standard Bootloader unter Linux heisst LILO (Linux Loader). Mit LILO können Linux, BSD, Windows, DOS, OS/2 und fast beliebige andere Systeme gebootet werden.

Bei der Installation muss festgelegt werden, von wo das System gebootet wird. Üblich sind:

LILO wird in /etc/lilo.conf konfiguriert:
disk    = /dev/hdc
bios  = 0x80
boot    = /dev/hdc
vga     = 788
read-only
menu-scheme = Wg:kw:Wg:Wg
lba32
prompt
timeout = 80
message = /boot/message

  image  = /boot/vmlinuz
  label  = linux
  root   = /dev/hdc3
  initrd = /boot/initrd
  append = "enableapic vga=0x0314"
  
  image  = /boot/vmlinuz.suse
  label  = failsafe
  root   = /dev/hdc3
  initrd = /boot/initrd.suse
  append = "disableapic ide=nodma apm=off"
  optional
  
  image  = /boot/memtest.bin
  label  = memtest86

zurück Inhalt weiter


Letzte Änderung am Son Feb 24 14:41:51 CET 2002 von Adrian Reyer