а кому-нибудь удалось загрузить Ubuntu с помощью pxelinux?вот как я пытаюсь это сделать:
dhcpd.conf:
allow booting;
allow bootp;
option domain-name "edigarov.sa.net.ua";
option domain-name-servers 194.6.231.1;
subnet 192.168.3.4 netmask 255.255.255.252 {
option routers 192.168.3.5;
host notebook {
hardware ethernet 00:0e:a6:bf:75:94;
fixed-address 192.168.3.6;
filename "pxelinux.0";
next-server 192.168.3.5;
}
}
# ls -Rl /usr/tftpboot/
total 115528
-rw-r--r-- 1 root wheel 12468707 May 24 11:43 boot.img.gz
-rw-r--r-- 1 root wheel 8508130 May 24 11:49 initrd.gz
-rw-r--r-- 1 root wheel 13121536 May 24 11:45 mini.iso
-rw-r--r-- 1 root wheel 12451180 May 24 11:24 netboot.tar.gz
lrwxr-xr-x 1 root wheel 32 May 24 11:24 pxelinux.0 -> ubuntu-installer/i386/pxelinux.0
lrwxr-xr-x 1 root wheel 34 May 24 11:24 pxelinux.cfg -> ubuntu-installer/i386/pxelinux.cfg
drwxr-xr-x 3 root wheel 512 Apr 26 01:58 ubuntu-installer
-rw-r--r-- 1 root wheel 58 Apr 26 01:58 version.info
-rw-r--r-- 1 root wheel 12468707 May 24 11:54 vmlinuz
/usr/tftpboot/ubuntu-installer:
total 4
drwxr-xr-x 4 root wheel 512 Apr 26 01:58 i386
/usr/tftpboot/ubuntu-installer/i386:
total 24616
drwxr-xr-x 2 root wheel 512 Apr 26 01:58 boot-screens
-rw-r--r-- 1 root wheel 8508130 Apr 26 01:58 initrd.gz
-rw-r--r-- 1 root wheel 4029792 Apr 26 01:58 linux
-rw-r--r-- 1 root wheel 14776 Apr 26 01:58 pxelinux.0
drwxr-xr-x 2 root wheel 512 May 24 11:35 pxelinux.cfg
/usr/tftpboot/ubuntu-installer/i386/boot-screens:
total 364
-rw-r--r-- 1 root wheel 566 Apr 26 01:58 adtext.cfg
-rw-r--r-- 1 root wheel 875 Apr 26 01:58 f1.txt
-rw-r--r-- 1 root wheel 723 Apr 26 01:58 f10.txt
-rw-r--r-- 1 root wheel 740 Apr 26 01:58 f2.txt
-rw-r--r-- 1 root wheel 782 Apr 26 01:58 f3.txt
-rw-r--r-- 1 root wheel 417 Apr 26 01:58 f4.txt
-rw-r--r-- 1 root wheel 806 Apr 26 01:58 f5.txt
-rw-r--r-- 1 root wheel 1220 Apr 26 01:58 f6.txt
-rw-r--r-- 1 root wheel 916 Apr 26 01:58 f7.txt
-rw-r--r-- 1 root wheel 1029 Apr 26 01:58 f8.txt
-rw-r--r-- 1 root wheel 766 Apr 26 01:58 f9.txt
-rw-r--r-- 1 root wheel 813 Apr 26 01:58 menu.cfg
-rw-r--r-- 1 root wheel 185 Apr 26 01:58 po4a.cfg
-rw-r--r-- 1 root wheel 573 Apr 26 01:58 prompt.cfg
-rw-r--r-- 1 root wheel 7999 Apr 26 01:58 splash.png
-rw-r--r-- 1 root wheel 395 Apr 26 01:58 stdmenu.cfg
-rw-r--r-- 1 root wheel 401 Apr 26 01:58 text.cfg
-rw-r--r-- 1 root wheel 144392 Apr 26 01:58 vesamenu.c32
/usr/tftpboot/ubuntu-installer/i386/pxelinux.cfg:
total 4
lrwxr-xr-x 1 root wheel 34 May 24 11:35 000EA6BF7594 -> /usr/tftpboot/pxelinux.cfg/default
-rw-r--r-- 1 root wheel 127 Apr 26 01:58 default
# tftpd /usr/tftpboot
видим, что ноут получил ip от dhcpd.
пытается грузиться, показывает какое-то сообщение от PXELINUX, и виснет с черным экраном. разобрать, что он пишет - не представляется возможным, сообщение показывается на долю секунды.
кто-нибудь подобное борол?