TFTP服务器作为工作于宿主机上的软件,主要提供对目标机的主要映像文件的下载工作。
使用RPM包安装tftp-server1、如果利用如下命令能够看到服务已启动, 则不用安装
[arm@localhost]# netstat -a | grep tftp
已安装结果: udp 0 0 *:tftp *:*
2、如果没有安装,执行如下命令安装。
[root@localhost]# rpm -ivh tftp-server-0.42-3.1.i386.rpm
3、建立tftp的主工作目录
[root@localhost btools]# mkdir /tftpboot
4、修改配置文件
[root@localhost btools]# vi /etc/xinetd.d/tftp[code] service tftp
{
…………………………
socket_type = dgram
…… …… ……
server = /usr/sbin/in.tftpd
server_args = -s /tftpboot
disable = no
…… …… ……
}
[/code]5、重启服务
引用:#/etc/init.d/xinetd restart
#netstat -a | grep tftp
udp 0 0 *:tftp *:*
shinelong 于 2012-03-13 19:53:20发表:
路过 学习
jmkele 于 2011-12-28 09:53:52发表:
这么简单啊
lbjventure1 于 2011-09-15 15:28:25发表:
试一哈达
宝剑锋 于 2011-09-07 14:25:43发表:
(e:e2s
rainstonewu 于 2011-08-08 09:03:05发表:
非常感谢 解决了
yangzhifeng0628 于 2011-07-22 11:05:24发表:
看看那!
gdh7201 于 2010-08-20 12:35:56发表:
thanks!
huochai2020 于 2010-01-30 12:21:57发表:
这个可以吗,这么简单?