Data transfer

The scp utility allows you to transfer data between your local computer and your directories in SCAYLE storage and vice versa.
To copy from your computer to its storage, run the command:

scp -P 2222 <origin_file> user calendula.scayle.es:<destination>

Similarly, to download your programs or data to your local computer, the command will be:

scp -P 2222 :<origin_file> <destination>

For more information on using the scp command, see the SCP man pages.
As graphical alternatives there are several programs to avoid the use of the command line:

For all of them, the connection options are:

Host: calendula.scayle.es
Port: 2222
Connection type: SCP

The access from the frontends and servers of the system to the outside is not allowed.

If you need access to external urls for your work, you should contact our support service at to request access to the addresses you need.

For more advanced transfers, such as directory synchronization between local machines and directories stored in Caléndula, users can use the Rsync tool.
This tool allows the copy and synchronization of remote files and directories, in addition to being able to use them locally. Compared to scp, it has some advantages such as greater transfer efficiency or higher copy speed. As disadvantages, we can point to greater complexity in its use due to the large number of options it has.
In the following links you can find information about the different possibilities of using rsync:
www.tecmint.com
www.linuxtechi.com

To upload your data to our system:

rsync -avzh -e "ssh -p 2222" source_data 
:/home/group_name/user_name

and if it runs on your machine:

rsync -avzh -e "ssh -p 2222" 
:/home/group_name/user_name/data_to_download .

you could download what you need.