@nextechinc said in Booting System Rescue CD 5.2.2:
cpuid --ext 29 && set arch 64 || set arch 32
set path /netboot/systemrescuecd
set nfs_path /var/www/netboot/systemrescuecd
kernel http://${fog-ip}${path}/isolinux/rescue${arch} docache setkmap=us
initrd http://${fog-ip}${path}/isolinux/initram.igz
imgargs rescue${arch} initrd=initram.igz netboot=http://${fog-ip}${path}/sysrcd.dat setkmap=us dostartx
boot
Thank you so so much. I was struggling to get the SystemRescueCD to work at all, now it works 🙂
I think I used some tutorial on here or wiki somewhere and my paths were different, I had to use
path /srcd
And had to change the paths in kernel and initrd to
kernel http://${fog-ip}${path}/rescue${arch} docache setkmap=de
and
initrd http://${fog-ip}${path}/initram.igz
As well as imgargs to:
imgargs rescue${arch} initrd=initram.igz netboot=http://${fog-ip}${path}/sysrcd.dat setkmap=de dostartx
This may be my specific setup being somehow messed up, but in case somebody else has the same setup as I do …