ubunt_配置_tftp
Posted panda-w
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ubunt_配置_tftp相关的知识,希望对你有一定的参考价值。
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的主要内容,如果未能解决你的问题,请参考以下文章