- 安装tftpd
- 创建 /etc/xinetd.d/tftp文件,填写以下内容
- 创建 /tftpboot 目录
- 重启xinetd服务
- 在本机测试
- 在开发板上测试
1 |
$ sudo apt-get install xinetd tftpd tftp |
1 2 3 4 5 6 7 8 9 10 11 |
service tftp { protocol = udp port = 69 socket_type = dgram wait = yes user = nobody server = /usr/sbin/in.tftpd server_args = /tftpboot disable = no }<!--more--> |
1 2 3 |
$ sudo mkdir /tftpboot $ sudo chmod -R 777 /tftpboot $ sudo chown -R nobody /tftpboot |
1 |
$ sudo /etc/init.d/xinetd restart |
1 2 3 4 |
$ cp ipcam /tftpboot $ tftp 192.168.1.102 tftp> get ipcam Received 228796 bytes in 0.0 seconds |
1 2 |
基于busybox的tftp命令与原生命令不同,这里用 -g -r 参数下载 # tftp -g -r ipcam 192.168.1.102 |
原创文章,转载请注明: 转载自贝壳博客
本文链接地址: Ubuntu 安装配置 tftpd