2014年2月25日

安装tftp服务器

摘要: 在嵌入式开发中我们经常需要把编译好的镜像文件下载到开发板中,我接触过的主要有串口、usb和tftp下载这三种方式。 用tftp下载就需要要我们的主机上先安装tftp服务器。 1、安装软件包 sudo apt-get install tftpd tftp xinetd 2、建立配置文件 在/etc/xinetd.d/下建立一个配置文件tftp sudo vi /etc/xinetd.d/tftp 增加如下内容service tftp{ socket_type = dgram protocol = udp wait = yes user = root server = /usr/sbin/in.t 阅读全文

posted @ 2014-02-25 11:12 周辉~ 阅读(238) 评论(0) 推荐(0)

导航