Table of Contents | ||||
---|---|---|---|---|
|
Windows
1. using SFTP session in MobaXterm and specify the following information.
...
4. The SFTP will be started. You can drag and drop file/directory to transfer file/directory between your local PC and LANTA. You also can change the location on LANTA by specify path at the to of LANTA window (squared in red).
...
macOS/Linux
using scp
command and enter your password then you two-factor authentication code. Note that add -r
option to transfer directory.
...
Code Block |
---|
localuser@localmachine:~/test$ scp -r local-directory hpcuser@lanta.nstda.or.th:/home/hpcuser
(hpcuser@lanta.nstda.or.th) Password: [enter your LANTA password]
(hpcuser@lanta.nstda.or.th) Verification code: [enter your 2FA code] |
...
TARA to LANTA file transfer
On TARA HPC, using scp
command and specify the follow detail.
Code Block |
---|
scp [source] [lantausername]@lanta.nstda.or.th:[PATH] |
For example,
Code Block |
---|
[tarauser@tara-frontend-1 ~]$ scp test.sh lantauser@lanta.nstda.or.th:~ Warning: Permanently added 'lanta.nstda.or.th' (ECDSA) to the list of known hosts. Password: [enter your LANTA password] Verification code: [enter your 2FA code] test.sh 100% 163 61.2KB/s 00:00 |
, where lantauser is your LANTA username.
...