SystemRescueCd 6 von USB und Netzwerk booten

Die neue Version 6 der SystemRescueCd bringt einige Neuerungen mit. (siehe changelog)
Das System basiert jetzt auf Arch Linux und für den Desktop kommt XFCE zum Einsatz.

Dadurch ändern sich natürlich auch alle Bootkonfigurationen für syslinux, grub und pxe.
Meine diversen Multiboot USB-Sticks und den PXE Server hab ich heute auf die neue Version aktualisiert.

SystemRescueCd 6 mit Syslinux booten

Die ISO Datei mit 7-Zip öffnen und den Ordner sysresccd auf die root des USB-Sticks kopieren.
wichtig: archisolabel=NAME-DES-USB-STICKS

LABEL System Rescue CD 6.0.1 x64
  LINUX /sysresccd/boot/x86_64/vmlinuz
  INITRD /sysresccd/boot/intel_ucode.img,/sysresccd/boot/amd_ucode.img,/sysresccd/boot/x86_64/sysresccd.img vga=791 setkmap=de
  APPEND archisobasedir=sysresccd archisolabel=MULTIBOOT-32GB

SystemRescueCd 6 mit Grub booten

Die ISO Datei in den Ordner ISO auf den USB-Stick kopieren.
wichtig: img_label=NAME-DES-USB-STICKS

menuentry "System Rescue CD 6.0.1 x64" {
  set gfxpayload=keep
  set isofile="/ISO/systemrescuecd-6.0.1.iso"
  echo "loading $isofile"
  loopback loop $isofile
  linux (loop)/sysresccd/boot/x86_64/vmlinuz img_label=MULTIBOOT-64GB img_loop=ISO/systemrescuecd-6.0.1.iso archisobasedir=sysresccd vga=791 setkmap=de
  initrd (loop)/sysresccd/boot/x86_64/sysresccd.img
  }

SystemRescueCd 6 per PXE booten

Die ISO Datei mit 7-Zip öffnen und den Ordner sysresccd auf den TFTP/PXE Server kopieren.
Für den PXE Server nutze ich lpxelinux.0 aus dem PXELINUX Projekt. Mein http share ist http://192.168.5.20/pxe/

LABEL System Rescue CD 6.0.1 x64 (HTTP)
  LINUX http://192.168.5.20/pxe/sysresccd/boot/x86_64/vmlinuz
  INITRD http://192.168.5.20/pxe/sysresccd/boot/intel_ucode.img,http://192.168.5.20/pxe/sysresccd/boot/amd_ucode.img,http://192.168.5.20/pxe/sysresccd/boot/x86_64/sysresccd.img vga=791 setkmap=de
  APPEND archisobasedir=sysresccd archiso_http_srv=http://192.168.5.20/pxe/
  SYSAPPEND 3

Schreibe einen Kommentar