为了方便配置,最好用root帐户
安装tftp-hpa
sudo apt-get install tftp-hpa tftpd-hpa xinetd
在根目录下创建文件夹/tftpboot/root
修改目录权限chmod -R 777 /tftpboot/root
#gedit /etc/xinetd.d/tftp
service tftp
(这部分一般不需要改)修改inetd.conf文件
# gedit /etc/inetd.conf
其中/tftpboot/root为 tftp共享目录
修改tftpd-hpa文件
# vim /etc/default/tftpd-hpa
#RUN_DAEMON="no"
#OPTIONS="-s /tftpboot/root -c -p -U tftpd"
TFTP_USERNAME="tftp"
TFTP_DIRECTORY="/tftpboot/root"
TFTP_ADDRESS="0.0.0.0:69"
TFTP_OPTIONS="-l -c -s"
在/tftpboot/root下创建测试文件xxx
#cd /tftpboot/root
#touch xxx
#chmod 777 xxx
测试一下 tftp服务:
#cd /
#tftp 127.0.0.1
tftp>get xxx
tftp>q
#ls
查看当前目录,发现xxx文件已在当前目录
如果上述设置还不行的话,那么就要把selinux禁用掉:
#gedit /etc/selinux/config
# This file controls the state of SELinux on the system.
# SELINUX= can take one of these three values:
#
#
#
SELINUX=enforcing
# SELINUXTYPE= type of policy in use. Possible values are:
#
#
SELINUXTYPE=targeted
把上面的SELINUX=enforcing 改为:SELINUX=disable
然后reboot重启PC
重启后再进行tftp测试。
若遇到解决不了的问题就重启下电脑试试