Khadas Docs

Amazing Khadas, always amazes you!

User Tools

Site Tools


products:sbc:common:development:setup-tftp-server

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Next revision
Previous revision
products:sbc:common:development:setup-tftp-server [2022/07/05 23:41]
nick created
products:sbc:common:development:setup-tftp-server [2022/07/08 05:53] (current)
frank
Line 12: Line 12:
 Install TFTP packages: Install TFTP packages:
  
-```sh+```shell
 $ sudo apt-get install openbsd-inetd tftpd tftp $ sudo apt-get install openbsd-inetd tftpd tftp
 ``` ```
  
-  * Configuration+Configuration:
  
-As root, enable the TFTP server by editing `/etc/inetd.conf`. Locate the line that looks similar to:+As root, enable the TFTP server by editing ''/etc/inetd.conf''. Locate the line that looks similar to:
  
 ```txt ```txt
Line 24: Line 24:
 ``` ```
  
-Uncomment this line, and add the option and value `-s /srv/tftpto the end of this line: +Uncomment this line, and add the option and value ''-s /srv/tftp'' to the end of this line: 
  
 ```txt ```txt
Line 32: Line 32:
 Create and modify permissions on the TFTP root directory: Create and modify permissions on the TFTP root directory:
  
-```bash+```shell
 $ sudo mkdir /srv/tftp $ sudo mkdir /srv/tftp
 $ sudo chown -R $(whoami) /srv/tftp $ sudo chown -R $(whoami) /srv/tftp
Line 39: Line 39:
 Restart the TFTP Service: Restart the TFTP Service:
  
-```sh+```shell
 $ sudo /etc/init.d/xinetd restart $ sudo /etc/init.d/xinetd restart
 ``` ```
-</div> 
- 
-<div class="tab-pane fade show" id="18.04" role="tabpanel" aria-labelledby="18.04-tab"> 
  
 <tabbox Ubuntu 18.04 or newer> <tabbox Ubuntu 18.04 or newer>
Line 50: Line 47:
 Install additional TFTP packages: Install additional TFTP packages:
  
-```sh+```shell
 $ sudo apt-get install tftp-hpa tftpd-hpa $ sudo apt-get install tftp-hpa tftpd-hpa
 ``` ```
  
-  * Configuration+Configuration:
  
-As root, edit `/etc/default/tftpd-hpa`, and locate the line that looks similar to:+As root, edit ''/etc/default/tftpd-hpa'', and locate the line that looks similar to:
  
-```sh+```shell
 TFTP_DIRECTORY="/usr/lib/tftpboot" TFTP_DIRECTORY="/usr/lib/tftpboot"
 ``` ```
  
-Change the dir to `/srv/tftp`.+Change the dir to ''/srv/tftp''.
  
-```bash+```shell
 TFTP_DIRECTORY="/srv/tftp" TFTP_DIRECTORY="/srv/tftp"
 ``` ```
 Create and modify permissions on the TFTP root directory: Create and modify permissions on the TFTP root directory:
  
-```sh+```shell
 $ sudo mkdir /srv/tftp $ sudo mkdir /srv/tftp
 $ sudo chown -R $(whoami) /srv/tftp $ sudo chown -R $(whoami) /srv/tftp
Line 76: Line 73:
 Restart the TFTP Service: Restart the TFTP Service:
  
-```sh+```shell
 $ sudo service tftpd-hpa restart $ sudo service tftpd-hpa restart
 ``` ```
Line 88: Line 85:
  
   * Connect a LAN cable to your target device, and make sure your device is on same local network with your Host PC.   * Connect a LAN cable to your target device, and make sure your device is on same local network with your Host PC.
-  * Connect a "Serial-To-USB Module" between the target device and Host PC and ensure you have done the correct [setup](SetupSerialTool.html).+  * Connect a "Serial-To-USB Module" between the target device and Host PC and ensure you have done the correct [[products:sbc:common:development:setup-serial-tool|setup]].
   * Power-on your target device, and ensure the device has a bootloader installed in it.   * Power-on your target device, and ensure the device has a bootloader installed in it.
  
-Stop U-boot from autobooting by hitting `Enter` or `Spaceat the moment you power-on your target device:+Stop U-boot from autobooting by hitting ''Space'' at the moment you power-on your target device:
  
-```sh+```
 U-Boot 2015.01 (May 18 2019 - 19:31:53) U-Boot 2015.01 (May 18 2019 - 19:31:53)
  
Line 122: Line 119:
 kvim3# kvim3#
 ``` ```
-Running `saveenvwill save the env values to the env partition on the eMMC. You can run `defenvto restore the env to the default values.+Running ''saveenv'' will save the env values to the env partition on the eMMC. You can run ''defenv'' to restore the env to the default values.
  
  
Line 139: Line 136:
  
 </WRAP> </WRAP>
- 
  
  
 ===== Test Your TFTP Server ===== ===== Test Your TFTP Server =====
- 
  
  
 <WRAP important > <WRAP important >
-VIM1/VIM2/VIM3/VIM3L is **u-boot.bin**, VIM4 is **u-boot.bin.signed**.+VIM1/2/3/3L is **u-boot.bin**, VIM4 is **u-boot.bin.signed**.
 </WRAP> </WRAP>
  
Line 153: Line 148:
 Make sure you have copied the testing file to the TFTF root path: Make sure you have copied the testing file to the TFTF root path:
  
-```sh+```shell
 $ ls /srv/tftp/u-boot.bin $ ls /srv/tftp/u-boot.bin
 /srv/tftp/u-boot.bin /srv/tftp/u-boot.bin
 ``` ```
  
-Load a file into the `0x1080000address:+Load a file into the ''0x1080000'' address:
 ``` ```
 kvim3# tftp 1080000 u-boot.bin kvim3# tftp 1080000 u-boot.bin
Line 179: Line 174:
 ===== Troubleshooting ===== ===== Troubleshooting =====
  
-  * Check your LAN cable connection, if the terminal print-out looks like: +  * Check your LAN cable connection, if the terminal print-out looks like: ```
-```+
 kvim3# tftp 1080000 u-boot.bin kvim3# tftp 1080000 u-boot.bin
 dwmac.ff3f0000 Waiting for PHY auto negotiation to complete......... TIMEOUT ! dwmac.ff3f0000 Waiting for PHY auto negotiation to complete......... TIMEOUT !
Line 187: Line 181:
 ``` ```
  
-  * Check your server IP or filename address, if the print-out looks like: +  * Check your server IP or filename address, if the print-out looks like: ```
-```+
 kvim3#tftp 1080000 u-boot.bin kvim3#tftp 1080000 u-boot.bin
 Speed: 1000, full duplex Speed: 1000, full duplex
Line 199: Line 192:
 Speed: 1000, full duplex Speed: 1000, full duplex
 ``` ```
-In this example, I had set the server IP address to `192.168.1.177which is incorrect. It should be `192.168.1.117instead.+In this example, I had set the server IP address to ''192.168.1.177'' which is incorrect. It should be ''192.168.1.117'' instead.
  
 ===== See Also ===== ===== See Also =====
  
-  * [Ubuntu Wiki: TFTP](https://help.ubuntu.com/community/TFTP) +  * [[https://help.ubuntu.com/community/TFTP|Ubuntu Wiki: TFTP]] 
-* [Configuring TFTP servers on Linux](http://venkateshabbarapu.blogspot.com/2012/10/configuring-tftp-server-for-linux.html)+  * [[http://venkateshabbarapu.blogspot.com/2012/10/configuring-tftp-server-for-linux.html| Configuring TFTP servers on Linux]]
Last modified: 2022/07/05 23:41 by nick