For research purposes, I use the University server.
The server login is a two-step process.
First, I type
ssh -p 44 [email protected]
(Altered for security reason)
Then the password is prompted. I type the credential
Then I type
ssh [email protected]
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 [email protected]:~/
scp first.pdf [email protected]:~/
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 ([email protected]:~/) 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.