标签:传输 打开 安装与配置 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服务器
标签:传输 打开 安装与配置 art 安装 install inetd cond 配置文件
原文地址:https://www.cnblogs.com/panda-w/p/10935802.html