首页 > 代码库 > busybox inetd tftpd

busybox inetd tftpd

/*************************************************************************** *                       busybox inetd tftpd * 说明: *     在NXP官方主板上使能运行tftpd的,不过不知道为什么换块主板就不行了,于是 * 找原因,中间换过xinetd也不行,最后换成inetd才行。 * *                                         2016-9-27 深圳 南山平山村 曾剑锋 **************************************************************************/一、参考文档:    嵌入式 busybox自带的tftp、telnet、ftp服务器        http://blog.csdn.net/skdkjzz/article/details/40397099    二、inetd配置:    [aplex@root ~]# cat /etc/inetd.conf         69 dgram udp nowait root tftpd tftpd /var/lib/tftpboot三、启动inetd:    [aplex@root ~]# cat /etc/init.d/S80inetd         #! /bin/sh                inetd -e /etc/inetd.conf

 

busybox inetd tftpd