This entire document was copied from the HPC-carpentry lesson on 10-23-18 and is intended for student use.
scp
is useful, but what if we don't know the exact location of what we want to transfer? Or
perhaps we're simply not sure which files we want to transfer yet. sftp
is an interactive way of
downloading and uploading files. Let's connect to a cluster, using sftp
- you'll notice it works
the same way as SSH:
{: .bash}
This will start what appears to be a bash shell (though our prompt says sftp>
). However we only
have access to a limited number of commands. We can see which commands are available with help
:
{: .bash}
{: .output}
Notice the presence of multiple commands that make mention of local and remote. We are actually
connected to two computers at once (with two working directories!).
To show our remote working directory:
{: .bash}
{: .output}
To show our local working directory, we add an l
in front of the command:
{: .bash}
{: .output}
The same pattern follows for all other commands:
ls
shows the contents of our remote directory, while lls
shows our local directory contents.cd
changes the remote directory, lcd
changes the local one.To upload a file, we type put some-file.txt
(tab-completion works here).
{: .bash}
{: .output}
To download a file we type get some-file.txt
:
{: .bash}
{: .output}
And we can recursively put/get files by just adding -r
. Note that the directory needs to be
present beforehand.
{: .bash}
{: .output}
To quit, we type exit
or bye
.
FileZilla is a cross-platform client for downloading and uploading files to and from a remote
computer. It is absolutely fool-proof and always works quite well. In fact, it uses the exact same
protocol as sftp
under the hood. If sftp
works, so will FileZilla!
Download and install the FileZilla client from
https://filezilla-project.org. After installing and opening the
program, you should end up with a window with a file browser of your local system on the left hand
side of the screen. When you connect to the cluster, your cluster files will appear on the right
hand side.
To connect to the cluster, we'll just need to enter our credentials at the top of the screen:
sftp://login.cac.queensu.ca
Hit "Quickconnect" to connect! You should see your remote files appear on the right hand side of the
screen. You can drag-and-drop files between the left (local) and right (remote) sides of the screen
to transfer files.