You may need to download files from your ZEDAT account that you have created with the tools provided there (for example, CQP or the TreeTagger), or upload files that you have created on your own computer in order to process them further. There are several ways of doing this, we describe the ones we find most useful.
The first way of uploading or downloading files is to access your ZEDAT account using the web interface provided by the ZEDAT itself. While this is not the quickest or most elegant way, it has the advantage that it only requires a browser and that it will feel very familiar even if you do not have any advanced experience with computers:
Another way of uploading and downloading files is to access your ZEDAT account using an SFTP file browser that allows you to sign into our ZEDAT server using the standard Secure File Transfer Protocol.
Most operating systems these days have this functionality built into their own file browsers (for example, Nautilus on Ubuntu, the “Connect to server” function on macOS, or the Windows explorer). Using this functionality, you can login to your account and access the files on the server as though they were on your own computer.
Tutorials:
The built-in functions can sometimes be slow, in which case you may want to use a third-party program. There is a range of such programs available, both free and paid. Below are two suggestions based on what we like, but feel free to try out other programs!
To access your file storage with one of these (or similar) programs, you need to set up a connection to the server in the settings or preferences of the respective program. To do so, you need your ZEDAT username and password and the following information (which you enter into the corresponding fields in the settings of your program):
If you are using the terminal application on Mac or Linux or Windows Powershell, you can download files easily with scp
. Open your terminal, and type scp USERNAME@login.fu-berlin.de:“~/FILEPATH” .
Just replace USERNAME
with the same username you use when you ssh
and PATH
with the path you saved the file to. For example:
scp musterperson@login.fu-berlin.de:"~/myconcordance.txt" .
The dot .
refers to your current working directory. By default this is C:\Users\USERNAME
on Windows and the home directory ~/
on Mac and Linux. You can replace it with any custom path.
If you want to copy an entire directory, use the -r
flag. You can also use wildcards like *
.
For example, scp -r musterperson@login.fu-berlin.de:“~/*” Data
will download a copy of your entire server space into the folder Data
.