High-Performance Computing (HPC) systems consist of interconnected nodes forming clusters. Its usually a linux based server for managing nodes (i.e. CPUs) to perform large computations.
Note: Please click here for details related to H-Lab Server
Accessing HPC systems typically involves:
ssh user@hostname
.scp
, rsync
, or GUI-based tools such as winscp
for moving files between local and remote systems.scp
: copies files between hosts on a network(see below for command syntex)
scp [-346ABCOpqRrTv] [-c cipher] [-D sftp_server_path] [-F ssh_config] [-i identity_file] [-J destination] [-l limit] [-o ssh_option] [-P port] [-S program] source ... target
Note: info scp
will shows all the details realted to scp including options.
rsync
: a fast, versatile, remote (and local) file-copying tool(see below for command syntex)
Local:
rsync [OPTION...] SRC... [DEST]
Access via remote shell:
Pull:
rsync [OPTION...] [USER@]HOST:SRC... [DEST]
Push:
rsync [OPTION...] SRC... [USER@]HOST:DEST
Access via rsync daemon:
Pull:
rsync [OPTION...] [USER@]HOST::SRC... [DEST]
rsync [OPTION...] rsync://[USER@]HOST[:PORT]/SRC... [DEST]
Push:
rsync [OPTION...] SRC... [USER@]HOST::DEST
rsync [OPTION...] SRC... rsync://[USER@]HOST[:PORT]/DEST)
Note: for more details use info rsync
.