linux_wiki:access_remote_systems_using_ssh

Differences

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

Link to this comparison view

Next revision
Previous revision
linux_wiki:access_remote_systems_using_ssh [2016/02/28 22:50]
billdozor created
linux_wiki:access_remote_systems_using_ssh [2019/05/25 23:50] (current)
Line 3: Line 3:
 **General Information** **General Information**
  
-About this page/how-to/script+Using Secure Shell (SSH), Secure Copy (SCP), and Secure File Transfer Protocol (SFTP)
  
 ---- ----
 +
 +===== SSH =====
  
 SSH Connect to another system SSH Connect to another system
Line 12: Line 14:
 </code> </code>
  
 +\\
 Create a new directory on a remote system Create a new directory on a remote system
 <code bash> <code bash>
 ssh user@10.0.0.1 "mkdir newdir" ssh user@10.0.0.1 "mkdir newdir"
 </code> </code>
 +
 +----
 +
 +===== SCP =====
  
 Copy new file from local system to remote system Copy new file from local system to remote system
Line 21: Line 28:
 scp ~/newfile.txt user@10.0.0.1:/home/user/newdir/ scp ~/newfile.txt user@10.0.0.1:/home/user/newdir/
 </code> </code>
 +
 +----
 +
 +===== SFTP =====
  
 Connect to remote system using SFTP Connect to remote system using SFTP
Line 27: Line 38:
 </code> </code>
  
 +\\
 SFTP: Download file from remote system to local machine SFTP: Download file from remote system to local machine
 <code bash> <code bash>
Line 32: Line 44:
 </code> </code>
  
 +\\
 SFTP: Upload file from local machine to remote system SFTP: Upload file from local machine to remote system
 <code bash> <code bash>
Line 37: Line 50:
 </code> </code>
  
 +\\
 SFTP: Close remote connection SFTP: Close remote connection
 <code bash> <code bash>
  • linux_wiki/access_remote_systems_using_ssh.1456717849.txt.gz
  • Last modified: 2019/05/25 23:50
  • (external edit)