For research purposes, I use the University server.
The server login is a two-step process.
First, I type
ssh -p 44 linuxuser@jackbio-oopd.res.uk
(Altered for security reason)
Then the password is prompted. I type the credential
Then I type
ssh linuxuser@10.567.96.303
Then the password is prompted. I type the credential
Now if I have to transfer a file (say a pdf file namely first.pdf) to the working directory I use the following code
scp - P 44 first.pdf linuxuser@jackbio-oopd.res.uk:~/
scp first.pdf linuxuser@10.567.96.303:~/
Until here it is clear My doubt begins after this
- If I have to bring back the
first.pdffrom the final working directory to the local machine. (working computer).
How to do it?
- I was able to access the intermediate directory (linuxuser@jackbio-oopd.res.uk:~/) through
Filezilla. But I was not able to access the final main directory through Filezilla. I tried through other software such aswinscpneither it worked. The GUI software generally has a single tab for typing username and password. But here I have 2 step login process. Hence the whole confusion.
How to access the final working directory through a GUI software.