嵌入式Linux开发工具中用的较多还有TFTP网络服务,具体配置如下:
1.检查在 /etc/ 下有没有 xinetd.d/ 目录,没有的话
sudo apt-get install xinetdsudo apt-get install netkit-inetd
2. sudo apt-get install tftp-hpa tftpd-hpa 安装服务
3. sudo mkdir /tftp
sudo chmod777 /tftp
4. 打开目录 /etc/xinetd.d/
新建文件tftp
tftp内容:
service tftp
{
disable = no
socket_type = dgram
protocol = udp
wait = yes
user = root
server = /usr/sbin/in.tftpd
server_args = -s /tftp-c //-c决定了能不能上传
per_source = 11
cps = 100 2
flags = IPv4
}
5. 重新启动服务:
sudo /etc/init.d/xinetd restart
检查服务是否开启
netstat -a |grep tftp
出现下图的内容:
只要出现 upd 那项就说明服务安装成功了。
6. 测试配置正确与否
在 /tftp 下新建一个文件 取名为 1 ,输入内容 hello tftp!
在终端输入
cd home/li (li是用户名)
tftp 192.168.1.100
换成自己的ip
tftp> get 1
如果能够得到文件,且打开里面有 hello tftp ! 那么就成功了。