Difference between revisions of "Transfer files via SCP"
From IGEP - ISEE Wiki
Manel Caro (talk | contribs) |
Manel Caro (talk | contribs) |
||
Line 14: | Line 14: | ||
You can repeat the process from the IGEP console, and transfer a file from IGEP to your Host PC. | You can repeat the process from the IGEP console, and transfer a file from IGEP to your Host PC. | ||
+ | |||
+ | |||
[[Category:Software applications]] | [[Category:Software applications]] | ||
+ | |||
+ | [[Category:SSH]] |
Latest revision as of 22:30, 29 October 2017
SCP is a network protocol which supports file transfers between Linux hosts. You can use this protocol to directly transfer files from a host to a IGEP Processor Board via Ethernet, Wifi, USB Ethernet Gadget, etc.
Use:
$ scp -r files_to_transfer destination_user@destination_host:/destination_path
Example:
Now let's transfer a file called file.text in your host PC to IGEP Board in /tmp/
In your Host PC open Terminal and type:
$ scp -r file.text root@192.168.5.1:/tmp/file.text
You can repeat the process from the IGEP console, and transfer a file from IGEP to your Host PC.