Difference between revisions of "Transfer files via SCP"

From IGEP - ISEE Wiki

Jump to: navigation, search
m (Created page with 'SCP is a network protocol which supports file transfers between hosts. You can use this protocol to directly transfer files from a host to a IGEP Processor Board via Ethernet, Wi…')
 
m (USE)
Line 1: Line 1:
 
SCP is a network protocol which supports file transfers between 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.
 
SCP is a network protocol which supports file transfers between 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 ===
+
=== USE ===
  
$ scp -r <files to transfer> <destination user>@<destination host>:/<destination path>
+
<pre>$ scp -r files_to_transfer destination_user@destination_host:/destination_path
  
 
Example:
 
Example:
  
$ scp -r file.text root@192.168.2.1:/usr/share/file.text
+
$ scp -r file.text root@192.168.2.1:/usr/share/file.text </pre>
  
[[Category:Work in progress]]
+
 
[[Category:Communications]]
+
[[Category:Work_in_progress]] [[Category:Communications]]

Revision as of 13:56, 26 January 2012

SCP is a network protocol which supports file transfers between 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:

$ scp -r file.text root@192.168.2.1:/usr/share/file.text