|
嗨,大家
我用网络启动方式从一台Fedora Core 4 PC上,安装Debian到另一台笔记本上。两台电脑用网线相连。PC上安装了DHCP Server, TFTP Server,建了/tftpboot,放入pxelinux.0与netboot.gz.tar的解压缩。笔记本上采用PXE方式启动。
PC上的/etc/dhcpd.conf 的内容为:
ddn-update-style ad-hoc;
subnet 192.168.1.0 netmask 255.255.255.0 {
range 192.168.1.1 192.168.1.253;
option routers 192.168.1.1;
}
host clientname {
filename "/pxeliux.0";
server-name "localhost";
next-server localhost;
hardware ethernet 00:01:03:88:6C:F6;
fixed-address 192.168.1.90;
}
开启笔记本后,DHCP, TFTP工作正常。可是到PXE试图下载pxelinux.cfg/default时出错,屏幕显示:
Trying to load: pxelinux.cfg/default
couldn't find kernel image:linux
boot:
请帮忙!谢谢。
hi_ryo |
|