How to install tftp server in Ubuntu

In order to install a tftp server on Ubuntu, you have to download and install following packages: xinetd tftpd tftp Open a terminal window and type following command: $ sudo apt-get install xinetd tftpd tftp This will install tftp server in your system. Now we have to make some changes in order to use tftfp server. Create /etc/xinetd.d/tftp by giving the following command in terminal: $ sudo gedit /etc/xinetd.d/tftp This will open a file in gedit text editor, write following lines in this file: service tftp { protocol = udp…

Read More