Data Transfer/SFTP: Difference between revisions
Jump to navigation
Jump to search
H Schumacher (talk | contribs) m (Rename chapter) |
H Schumacher (talk | contribs) m (removed mounting chapter) |
||
(One intermediate revision by the same user not shown) | |||
Line 1: | Line 1: | ||
__FORCETOC__ |
|||
SFTP is a network protocol for data transfer. |
SFTP is a network protocol for data transfer. |
||
Line 5: | Line 5: | ||
=== Windows === |
=== Windows === |
||
We strongly recommend to use [[ |
We strongly recommend to use [[Data_Transfer/Graphical_Clients#MobaXterm|MobaXterm]] for data transfer between your PC and a remote system you have access to. |
||
=== MacOS & Linux === |
=== MacOS & Linux === |
||
Line 20: | Line 20: | ||
sftp> put myfile |
sftp> put myfile |
||
sftp> get myfile</pre> |
sftp> get myfile</pre> |
||
== Mounting == |
|||
The following tools create a network drive in the windows explorer as mount point. |
|||
{| class="wikitable" style="vertical-align:middle;" |
|||
|- style="font-weight:bold;" |
|||
! Tool |
|||
! Linux |
|||
! Mac |
|||
! Windows |
|||
|- |
|||
| SFTP Drive |
|||
| ✓ |
|||
| ✓ |
|||
| ✓ |
|||
|- |
|||
| WebDrive |
|||
| ☓ |
|||
| ✓ |
|||
| ✓ |
|||
|- |
|||
| SFTP Net Drive (ELDOS) |
|||
| ☓ |
|||
| ☓ |
|||
| ✓ |
|||
|- |
|||
| NetDrive |
|||
| ☓ |
|||
| ☓ |
|||
| ✓ |
|||
|- |
|||
| ExpanDrive |
|||
| ☓ |
|||
| ✓ |
|||
| ✓ |
|||
|} |
Latest revision as of 03:20, 17 December 2024
SFTP is a network protocol for data transfer.
Usage
Windows
We strongly recommend to use MobaXterm for data transfer between your PC and a remote system you have access to.
MacOS & Linux
Direct/interactive access via an sftp-shell:
> sftp <username>@<remotehost> Connecting to <remotehost><br> <username>@<remotehost>s password: sftp> ls ... sftp> help ... sftp> put myfile sftp> get myfile