码迷,mamicode.com
首页 > 其他好文 > 详细

ubunt_配置_tftp

时间:2019-05-29 14:51:42      阅读:136      评论:0      收藏:0      [点我收藏+]

标签:传输   打开   安装与配置   art   安装   install   inetd   cond   配置文件   

 tftp服务器的安装与配置:

tftp主要用于嵌入式交叉开发环境的搭建,传输文件。

 

1、创建tftp的工作目录,并修改权限

sudo mkdir /tftpboot

sudo chmod 777 /tftpboot

 

2、安装:

sudo apt-get install tftp tftpd openbsd-inetd

 

3、打开配置文件 /etc/inetd.conf :

sudo vim /etc/inetd.conf

 

4、添加以下内容:

tftp dgram udp wait nobody /usr/sbin/tcpd /usr/sbin/in.tftpd  /tftpboot

 

5、打开文件 /etc/default/tftpd-hpa ,添加以下内容:

RUN_DAEMON="yes"

OPTIONS = "-l -s /tftpboot"

 

6、重启服务:

sudo /etc/init.d/openbsd-inetd restart

 

 

 

 

 

7、测试:

在用户主目录位置下载zImage

tftp 192.168.7.4   登陆tftp服务器

tftp> get hello.c   下载文件zImage

Received 95 bytes in 0.1 seconds

tftp> quit    退出tftp服务器

ubunt_配置_tftp

标签:传输   打开   安装与配置   art   安装   install   inetd   cond   配置文件   

原文地址:https://www.cnblogs.com/panda-w/p/10935802.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!