A little nosing around results in
http://ubuntuforums.org/showthread.php?t=1466577Of course... we don't really have a grub. If we did, I would drop quiet splash and add radeon.modeset=0
I am actually not sure how to change kernel params for netboot. I will figure that out and get back to you.
Ok... sussed it.
This will give you the MAC of your individual MDs. Might be convenient to keep track of.
grep 'ATTR{address}==' /usr/pluto/diskless/*/etc/udev/rules.d/70-persistent-net.rules
This is where you will find the file to edit:
ls /tftpboot/pxelinux.cfg
So in my case... I want to edit moon98
grep 'ATTR{address}==' /usr/pluto/diskless/98/etc/udev/rules.d/70-persistent-net.rules
/usr/pluto/diskless/98/etc/udev/rules.d/70-persistent-net.rules:SUBSYSTEM=="net", ACTION=="add", DRIVERS=="?*", ATTR{address}=="
00:22:68:06:bc:0a", ATTR{dev_id}=="0x0", ATTR{type}=="1", KERNEL=="eth*", NAME="eth0"
ls /tftpboot/pxelinux.cfg/
01-00-01-6c-6f-9b-04 01-00-12-3f-ce-47-33 01-
00-22-68-06-bc-0a 01-00-30-18-ad-ee-0a default
so I would need to edit /tftpboot/pxelinux.cfg/01-00-22-68-06-bc-0a as always... backup first please.
DEFAULT Pluto
LABEL Pluto
KERNEL 98/vmlinuz
APPEND initrd=98/initrd.img ramdisk=10240 rw root=/dev/nfs boot=nfs nfsroot=192.168.80.1:/usr/pluto/diskless/98,intr,nolock,udp,rsize=32768,wsize=32768,retrans=10,timeo=50
quiet splash video=uvesafb:mode_option=1024x768-24,mtrr=3,scroll=ywrap vmalloc=256m I would replace "quiet splash and video=blahblah" with "radeon.modeset=0" and "vga=normal" as well.
So it would read:
APPEND initrd=98/initrd.img ramdisk=10240 rw root=/dev/nfs boot=nfs nfsroot=192.168.80.1:/usr/pluto/diskless/98,intr,nolock,udp,rsize=32768,wsize=32768,retrans=10,timeo=50 vga=normal radeon.modeset=0
We are trying to eliminate using the frame buffer. This will take some experimenting... but that is my best guess. vga=normal might be replaced with vga=nofb but I believe that is for earlier versions of grub...