Setting up a TFTP server on Linux?
Jan 06, 2020
asked by anonymous
Question / Issue:
Is there an easy way to set up a TFTP server on Ubuntu Linux to boot an embedded Linux system?
Responses:
Date: Jan. 6, 2020
Author: Mind Chasers
Comment:
Try this:
$ sudo apt install openbsd-inetd
$ sudo apt install tftpd
$ ps -e | grep inet
26493 ? 00:00:00 inetd
$ grep tftp /etc/inetd.conf
tftp dgram udp wait nobody /usr/sbin/tcpd /usr/sbin/in.tftpd /srv/tftp
Change /srv/tftp to your preferred folder and restart inetd.