Debugging arm of the board, to be downloaded through TFTP to the board, so you have to configure the TFTP server, really annoying death ...
Since the http://www.aliyun.com/zixun/aggregation/13835.html ">ubuntu has been built many times before the TFTP server, but has been unable to remember the name of that profile (memory too bad), So every time Baidu.
But each time the results of Baidu are not the same, and access is very large, and some of the process is quite cumbersome, not only very troublesome, and get to the end has not been configured successfully. So simply write a diary to note down.
TFTP server simplest installation configuration
1. Install Tftp-server
sudo apt install tftpd-hpa
sudo apt install tftp-hpa (without the need for a client to install)
TFTP-HPA is the client
TFTPD-HPA is a server-side
2. Configure the TFTP server
sudo vim/etc/default/tftpd-hpa
Replace the original content with the following:
Tftp_username= "TFTP"
Tftp_address= "0.0.0.0:69″
tftp_directory= "TFTP root" #服务器目录, you need to set permissions to 777,CHOMD 777
Tftp_options= "-l-c-S"
3. Restart the TFTP service
sudo service tftpd-hpa restart
4. Test
Actually really very simple process somehow some people wrote him very complicated, really no language!