Ubuntu 14.04 Boot via Pxe = Kernel Panic

Reaperian

Cadet 4th Year
Registriert
März 2010
Beiträge
93
Hallo,

ich schlage mich den ganzen Tag schon mit einem Problem rum bei dem meine Linux Kenntnisse an die Grenzen stoßen.

Folgendes Szenario:

Ich hab hier einen Windows WDS Server. Dieser soll die Desinfect aus der aktuellen Ct Zeitschrift bereitstellen (basiert auf Ubuntu 14.04). Die Einrichtung habe ich von :
https://thommck.wordpress.com/2011/...vices-pxelinux-for-the-ultimate-network-boot/

Wenn ich nun das Desinfect über den PXE booten will kommt folgender Fehler:
Begin Running: /scripts/init-premount ... done
Kernel Panic - not syncing Attempted to kill init! exitcode=0x00000200


Das Skript init-premount besteht aus der Datei "Order":
/scripts/init-premount/mdadm[ -e /conf/param.conf ] && . /conf/param.conf

und der Datei "mdadm":
#!/bin/sh

# init-premount script for mdadm.

PREREQS="udev"

prereqs()
{
echo $PREREQS
}

[ "$1" = "prereqs" ] || . /scripts/mdadm-functions

case $1 in
# get pre-requisites
prereqs)
prereqs
exit 0
;;
mountfail)
mountroot_fail
exit $?
;;
esac

. /scripts/functions

add_mountroot_fail_hook "10-mdadm"

exit 0

Googled man danach ist es meist ein Fehler mit ifconfig, aber der Kernel stoppt schon vorher.

Meine Boot Anweisung:

DEFAULT vesamenu.c32
PROMPT 0
NOESCAPE 0
ALLOWOPTIONS 0

# Timeout in units of 1/10 s

TIMEOUT 30 #3 second timeout.
MENU MARGIN 10
MENU ROWS 16
MENU TABMSGROW 21
MENU TIMEOUTROW 26
MENU COLOR BORDER 30;44 #20ffffff #00000000 none
MENU COLOR SCROLLBAR 30;44 #20ffffff #00000000 none
MENU COLOR TITLE 0 #ffffffff #00000000 none
MENU COLOR SEL 30;47 #40000000 #20ffffff
MENU TITLE Netboot Menu

LABEL desinfect2015
MENU LABEL Desinfec't
kernel /Linux/UbuntuLIVE/casper/vmlinuz
APPEND root=/dev/nfs boot=/Linux/UbuntuLIVE/casper initrd=/Linux/UbuntuLIVE/casper/initrd.lz file=/Linux/UbuntuLIVE/preseed/ubuntu.seed netboot=nfs nfsroot=10.100.200.196:/remoteinstall/ ip=dhcp ro

Hat jemand das schonmal mit nem WDS Server probiert und hat Erfahrungen ? Bin für jeden Tipp dankbar.

Gruß
 
Zurück
Oben