Quantcast
Channel: scp from one remote server to another remote server - Unix & Linux Stack Exchange
Browsing latest articles
Browse All 5 View Live

Answer by artfulrobot for scp from one remote server to another remote server

Full credit for this answer goes to https://superuser.com/a/602436/142948You need the -3 option for scp:scp -3 one:/opt/bigfile.tar.gz two:/opt/bigfile.tar.gz-3: Copies between two remote hosts are...

View Article



Answer by MvG for scp from one remote server to another remote server

Simple pipeTry this:ssh one 'cat file' | ssh two 'cat > file'The first one should send the file content to your machine, while the second should send that on to second machine. I would compute a...

View Article

Answer by slm for scp from one remote server to another remote server

Searching for the error message: "Host key verification failed." would seem to be the most straightforward thing to do here. I found this Q&A on askubuntu titled: SSH connection problem with “Host...

View Article

Answer by Marios Zindilis for scp from one remote server to another remote...

Since you have user access to the source server (one) why not login and run your scp command on that server directly... If you worry that it will take too long, then start the command inside a screen...

View Article

scp from one remote server to another remote server

I have one big file on server one and I want to copy it to server two using scp. I have the keys setup properly and I can ssh/scp to both servers from my desktop.The file I need to copy is larger then...

View Article

Browsing latest articles
Browse All 5 View Live




Latest Images