Copy 100gb of data from ftp to VPS using ssh [on hold]

The name of the pictureThe name of the pictureThe name of the pictureClash Royale CLAN TAG#URR8PPP











up vote
0
down vote

favorite












5 folders containing over 150gb of data on ftp and I need to copy to my VPS.










share|improve this question









New contributor




Web Mantas is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.











put on hold as unclear what you're asking by Jeff Schaller, frostschutz, G-Man, RalfFriedl, Rui F Ribeiro yesterday


Please clarify your specific problem or add additional details to highlight exactly what you need. As it's currently written, it’s hard to tell exactly what you're asking. See the How to Ask page for help clarifying this question. If this question can be reworded to fit the rules in the help center, please edit the question.














  • You mention both ssh and ftp; what services are available? What are the folder names? To where are you copying them?
    – Jeff Schaller
    yesterday










  • What have you tried? scp is a great tool to combine the functionality of ssh and ftp in one but like user Jeff Schaller is pointing out you need to edit your post to include more context please!
    – kemotep
    yesterday










  • ssh is available only at destination VPS.Copying them into root so far I tried wget username:password@domainname.com which works but now I have other problem which is trying to figure out the how to run terminal without disconnecting the transfer I mean will nohup will work?
    – Web Mantas
    yesterday






  • 2




    The usual way is either rsync or scp. Rsync will work over ssh. It is more complicated but also more featureful than scp. Both rsync and scp can be slow because ssh takes time to encrypt the data. Since it sounds like you're sending the data over public internet, you probably do want to encrypt it, but if you're willing to send it unencrypted (or if you can pre-encrypt it) then you can use netcat/nc to greatly speed up the transfer.
    – cryptarch
    yesterday















up vote
0
down vote

favorite












5 folders containing over 150gb of data on ftp and I need to copy to my VPS.










share|improve this question









New contributor




Web Mantas is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.











put on hold as unclear what you're asking by Jeff Schaller, frostschutz, G-Man, RalfFriedl, Rui F Ribeiro yesterday


Please clarify your specific problem or add additional details to highlight exactly what you need. As it's currently written, it’s hard to tell exactly what you're asking. See the How to Ask page for help clarifying this question. If this question can be reworded to fit the rules in the help center, please edit the question.














  • You mention both ssh and ftp; what services are available? What are the folder names? To where are you copying them?
    – Jeff Schaller
    yesterday










  • What have you tried? scp is a great tool to combine the functionality of ssh and ftp in one but like user Jeff Schaller is pointing out you need to edit your post to include more context please!
    – kemotep
    yesterday










  • ssh is available only at destination VPS.Copying them into root so far I tried wget username:password@domainname.com which works but now I have other problem which is trying to figure out the how to run terminal without disconnecting the transfer I mean will nohup will work?
    – Web Mantas
    yesterday






  • 2




    The usual way is either rsync or scp. Rsync will work over ssh. It is more complicated but also more featureful than scp. Both rsync and scp can be slow because ssh takes time to encrypt the data. Since it sounds like you're sending the data over public internet, you probably do want to encrypt it, but if you're willing to send it unencrypted (or if you can pre-encrypt it) then you can use netcat/nc to greatly speed up the transfer.
    – cryptarch
    yesterday













up vote
0
down vote

favorite









up vote
0
down vote

favorite











5 folders containing over 150gb of data on ftp and I need to copy to my VPS.










share|improve this question









New contributor




Web Mantas is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.











5 folders containing over 150gb of data on ftp and I need to copy to my VPS.







ssh ftp file-transfer data






share|improve this question









New contributor




Web Mantas is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.











share|improve this question









New contributor




Web Mantas is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.









share|improve this question




share|improve this question








edited yesterday









Rui F Ribeiro

38.1k1475123




38.1k1475123






New contributor




Web Mantas is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.









asked yesterday









Web Mantas

1




1




New contributor




Web Mantas is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.





New contributor





Web Mantas is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.






Web Mantas is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.




put on hold as unclear what you're asking by Jeff Schaller, frostschutz, G-Man, RalfFriedl, Rui F Ribeiro yesterday


Please clarify your specific problem or add additional details to highlight exactly what you need. As it's currently written, it’s hard to tell exactly what you're asking. See the How to Ask page for help clarifying this question. If this question can be reworded to fit the rules in the help center, please edit the question.






put on hold as unclear what you're asking by Jeff Schaller, frostschutz, G-Man, RalfFriedl, Rui F Ribeiro yesterday


Please clarify your specific problem or add additional details to highlight exactly what you need. As it's currently written, it’s hard to tell exactly what you're asking. See the How to Ask page for help clarifying this question. If this question can be reworded to fit the rules in the help center, please edit the question.













  • You mention both ssh and ftp; what services are available? What are the folder names? To where are you copying them?
    – Jeff Schaller
    yesterday










  • What have you tried? scp is a great tool to combine the functionality of ssh and ftp in one but like user Jeff Schaller is pointing out you need to edit your post to include more context please!
    – kemotep
    yesterday










  • ssh is available only at destination VPS.Copying them into root so far I tried wget username:password@domainname.com which works but now I have other problem which is trying to figure out the how to run terminal without disconnecting the transfer I mean will nohup will work?
    – Web Mantas
    yesterday






  • 2




    The usual way is either rsync or scp. Rsync will work over ssh. It is more complicated but also more featureful than scp. Both rsync and scp can be slow because ssh takes time to encrypt the data. Since it sounds like you're sending the data over public internet, you probably do want to encrypt it, but if you're willing to send it unencrypted (or if you can pre-encrypt it) then you can use netcat/nc to greatly speed up the transfer.
    – cryptarch
    yesterday

















  • You mention both ssh and ftp; what services are available? What are the folder names? To where are you copying them?
    – Jeff Schaller
    yesterday










  • What have you tried? scp is a great tool to combine the functionality of ssh and ftp in one but like user Jeff Schaller is pointing out you need to edit your post to include more context please!
    – kemotep
    yesterday










  • ssh is available only at destination VPS.Copying them into root so far I tried wget username:password@domainname.com which works but now I have other problem which is trying to figure out the how to run terminal without disconnecting the transfer I mean will nohup will work?
    – Web Mantas
    yesterday






  • 2




    The usual way is either rsync or scp. Rsync will work over ssh. It is more complicated but also more featureful than scp. Both rsync and scp can be slow because ssh takes time to encrypt the data. Since it sounds like you're sending the data over public internet, you probably do want to encrypt it, but if you're willing to send it unencrypted (or if you can pre-encrypt it) then you can use netcat/nc to greatly speed up the transfer.
    – cryptarch
    yesterday
















You mention both ssh and ftp; what services are available? What are the folder names? To where are you copying them?
– Jeff Schaller
yesterday




You mention both ssh and ftp; what services are available? What are the folder names? To where are you copying them?
– Jeff Schaller
yesterday












What have you tried? scp is a great tool to combine the functionality of ssh and ftp in one but like user Jeff Schaller is pointing out you need to edit your post to include more context please!
– kemotep
yesterday




What have you tried? scp is a great tool to combine the functionality of ssh and ftp in one but like user Jeff Schaller is pointing out you need to edit your post to include more context please!
– kemotep
yesterday












ssh is available only at destination VPS.Copying them into root so far I tried wget username:password@domainname.com which works but now I have other problem which is trying to figure out the how to run terminal without disconnecting the transfer I mean will nohup will work?
– Web Mantas
yesterday




ssh is available only at destination VPS.Copying them into root so far I tried wget username:password@domainname.com which works but now I have other problem which is trying to figure out the how to run terminal without disconnecting the transfer I mean will nohup will work?
– Web Mantas
yesterday




2




2




The usual way is either rsync or scp. Rsync will work over ssh. It is more complicated but also more featureful than scp. Both rsync and scp can be slow because ssh takes time to encrypt the data. Since it sounds like you're sending the data over public internet, you probably do want to encrypt it, but if you're willing to send it unencrypted (or if you can pre-encrypt it) then you can use netcat/nc to greatly speed up the transfer.
– cryptarch
yesterday





The usual way is either rsync or scp. Rsync will work over ssh. It is more complicated but also more featureful than scp. Both rsync and scp can be slow because ssh takes time to encrypt the data. Since it sounds like you're sending the data over public internet, you probably do want to encrypt it, but if you're willing to send it unencrypted (or if you can pre-encrypt it) then you can use netcat/nc to greatly speed up the transfer.
– cryptarch
yesterday
















active

oldest

votes






















active

oldest

votes













active

oldest

votes









active

oldest

votes






active

oldest

votes

Popular posts from this blog

Peggy Mitchell

Palaiologos

The Forum (Inglewood, California)