File transfer using a graphical tool¶
FileZilla connected to Bianca
Exercises¶
Read the UPPMAX page on file transfer using a graphical tool, then do these exercises.
1. Your colleague uses an SCP tool for secure file transfer. It does not work on Bianca. What is the problem?
The assumptions of your colleague are already wrong:
SCP is considered an outdated secure (outdated + secure = insecure
)
file transfer protocol.
Bianca does not support this outdated file transfer protocol. Instead, use a tool that allows the SFTP secure file transfer protocol.
2a. Exercise: upload a file to Bianca
This is described in the text above.
There is also a video here.
2b. Locate that file on Bianca using the graphical file explorer
Its location is at /proj/nobackup/[project_name]/wharf/[user_name]/[user_name]-[project_name]
,
for example, at /proj/nobackup/sens123456/wharf/sven/sven-sens123456
.
Start the file explorer and navigate there.
2c. Locate that file on Bianca using the terminal
Its location is at /proj/nobackup/[project_name]/wharf/[user_name]/[user_name]-[project_name]
,
for example, at /proj/nobackup/sens123456/wharf/sven/sven-sens123456
.
Start a terminal and use cd
to change to that directory, e.g.,
from your home folder, run
cd /proj/nobackup/sens123456/wharf/sven/sven-sens123456
.
In that folder, type ls
to list the files present in that folder.