LinuxSir.cn,穿越时空的Linuxsir!

 找回密码
 注册
搜索
热搜: shell linux mysql
查看: 491|回复: 2

Fedora 11 下怎么没有Bootstap了?

[复制链接]
发表于 2009-6-17 12:48:56 | 显示全部楼层 |阅读模式
/usr/lib/syslinux/pxelinux.0
这个东西没有了……根本没有/usr/lib/syslinux/目录阿……

我想用Fedora 11作PXE Server。
之前的Server是Fedora 6
 楼主| 发表于 2009-6-17 13:26:07 | 显示全部楼层
找到了。默认没有。需要装。
下了个
syslinux-3.75-1.fc11.i586.rpm
用rpm2cpio解压缩之后提取出来就有了。
恩。
回复 支持 反对

使用道具 举报

 楼主| 发表于 2009-6-17 15:09:19 | 显示全部楼层
DHCP正常了。但是TFTP不正常。
错误提示:
PXE-E11:ARP timeout

以下是我的配置文件
/etc/dhcpd.conf
ddns-update-style interim;
ddns-updates off;
ignore client-updates;
one-lease-per-client false;
allow bootp;
option T150 code 150 = string;
allow booting;


subnet 192.168.3.0 netmask 255.255.255.0 {
    interface eth0;
    range 192.168.3.10 192.168.3.100;
    default-lease-time 21600;
    max-lease-time 43200;
    option domain-name "testsrv.netb.com";
    option subnet-mask 255.255.255.0;
    option routers 192.168.3.1;
    option domain-name-servers 192.168.3.1;
        next-server 192.168.3.1;
    filename "pxelinux.0";
        option root-path "/tftpboot/";
}


然后是:
/etc/xinetd.d/tftp

service tftp
{
        socket_type                = dgram
        protocol                = udp
        wait                        = yes
        user                        = root
        server                        = /usr/sbin/in.tftpd
        server_args                   = -s /tftpboot
        disable                        = no
        per_source                = 11
        cps                        = 100 2
        flags                        = IPv4
}

怎么办……我已经把pexlinux.0 放在/tftpboot下了。为什么不能被加载呢 ?
回复 支持 反对

使用道具 举报

您需要登录后才可以回帖 登录 | 注册

本版积分规则

快速回复 返回顶部 返回列表