Connecting to RDS¶
RDS presents storage using the SMB protocol 1 to machines on the KCL network. Instructions for connecting are given below for Microsoft Windows, MacOS and Unix.
Microsoft Windows¶
The Windows format for the RDS SMB share is
1 |
|
and will work “as-is”, if you’re logged on with your KCL ID, from an “Explorer” window (replacing
Tip
e.g. if your project is my_project the view in the Explorer window will be similar to the following. . .
If you receive an error saying that you do not have access or the password is incorrect, it may be that Windows is trying to present incorrect credentials. The user can be specified explicitly from a command prompt with:
1 |
|
Attention
(replacing "KCL ID" and "your share name" as appropriate to your account and project)
Once RDS is mounted you will be able to access the storage in a manner similar to any other Network Drive. RDS will be visible in the Network section on the left hand side of the Explorer window as shown:
If you would like to make the connection your RDS share automatic, it can be mapped to a Windows drive letter by right-clicking on the share and selecting Map network drive... You will be given the option to chose which drive letter, which credentials (username/password) to use for the connection and whether to re-connect automatically at machine restart.
MacOS¶
On MacOS, the share can be mounted via the Finder application, using the “Connect to server” option under the “Go” menu (or Cmd-K) and connecting to:
1 |
|
Attention
(replacing "KCL ID" and "your share name" as appropriate to your account and project).
e.g. If your KCL ID = k1234567 and your new project is my_project. . . ...
The storage will appear in the filesystem under /Volumes.
If you cannot connect it may be that MacOS is automatically using the wrong password. You can force it to prompt for the password by adding ":*" after your username. e.g.
1 |
|
Linux, BSD, other Unices¶
There are various ways of connecting to SMB storage on different Unix systems. As an example, the following is for Debian/Ubuntu Linux distributions.
Mounting an RDS share¶
First ensure that the appropriate package is installed to handle SMB mounts.
1 |
|
and then mount the storage
1 2 3 |
|
replacing "share name", "KCL ID" and "desired mount point" accordingly.
Attention
The file_mode and dir_mode directives ensure that the mount is accessible by all users on the system and should be modified if this is not what is required.
Command line transfers to/from RDS¶
If you do not wish to mount RDS, for simple file transfers the smbclient utility may be suitable.
1 2 3 4 |
|
After entering the password and connecting, the remote share is accessible in a manner similar to sftp, with the prompt smb: \> accepting commands such as ls, get, put.
-
https://en.wikipedia.org/wiki/Server_Message_Block ↩