Access NAS DCSR from the cluster The NAS is available from the login node only under /nas. The folder hierarchy is: /nas/FAC//// Cluster -> NAS To copy a file to the NAS: cp /path/to/file /nas/FAC//// To copy a folder to the NAS: cp -r /path/to/folder /nas/FAC//// For more complex operations, consider using rsync. For the documentation see the man page: man rsync or check out this link . NAS -> cluster As above, just swapping the source and destination: cp /nas/FAC/////file /path/to/dest cp -r /nas/FAC/////folder /path/to/dest