Installing and Testing TFTP Server in Ubuntu
From hpcwiki
Installing and Testing TFTPD Server in Ubuntu
- Install following packages.
sudo apt-get install xinetd tftpd tftp
- Create /etc/xinetd.d/tftp and put this entry
service tftp
{
protocol = udp
port = 69
socket_type = dgram
wait = yes
user = nobody
server = /usr/sbin/in.tftpd
server_args = /tftpboot
disable = no
}