Changes between Initial Version and Version 1 of transfer


Ignore:
Timestamp:
10/22/2017 05:28:45 AM (7 years ago)
Author:
trac
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • transfer

    v1 v1  
     1= Using Http File Server =
     2
     3This demonstrates how to move a file from a host computer to a board using HFS (Http File Server). 
     4
     51. Download HFS (found at http://www.rejetto.com/hfs/?f=dl) to a computer that can be used to transfer the file.
     6
     72. Make sure the server's IP address is in the same network as the board.
     8
     9In this example, the server is 192.168.1.34/255.255.255.0 and the board is 192.168.1.15/255.255.255.0
     10
     11[[Image(wiki:transfer:server1.jpg)]]
     12
     133. Add a file to the server by right clicking and selecting "add files..."
     14
     15[[Image(wiki:transfer:server2.jpg)]]
     16
     17[[Image(wiki:transfer:server3.jpg)]]
     18
     19== Using wget to Retrieve Files from the Server ==
     20
     214. On the board type:
     22
     23{{{
     24wget [URL]
     25}}}
     26
     27For example:
     28
     29{{{
     30wget http://192.168.1.34/testing.txt
     31}}}
     32
     33This will download testing.txt to the current directory.