1安装tftp服务器。
sudo apt-get install xinetd tftpd
2 修改tftp的配置文件
sudo gvim /etc/xinetd.conf
加入:
service tftp
{
protocol = udp
port = 69
socket_type = dgram
wait = yes
user = nobody
server = /usr/sbin/in.tftpd
server_args = /tftpboot
disable = no
}
保存退出。
start the service.
sudo /etc/init.d/xinetd start
3 建立存放文件的目录。
cd /
sudo mkdir /tftpboot
sudo chmod 777 -R /tftpboot
sudo chown nobody -R /tftpboot
把需要共享的数据放到 /tftpboot中。
for example,
echo "this is a test" > /tftpboot/a.txt
4 test.
tftp 127.0.0.1
tftp> get a.txt
tftp> put b.c
.....
5 enjoy yourself....