Need to transfer a folder from ServerA to Ser
Closed
pensium
Posts
6
Registration date
Thursday February 21, 2008
Status
Member
Last seen
May 17, 2009
-
Feb 27, 2008 at 05:08 AM
[Dal] Posts 6198 Registration date Tuesday September 14, 2004 Status Contributor Last seen December 13, 2024 - Feb 27, 2008 at 07:31 AM
[Dal] Posts 6198 Registration date Tuesday September 14, 2004 Status Contributor Last seen December 13, 2024 - Feb 27, 2008 at 07:31 AM
Related:
- Need to transfer a folder from ServerA to Ser
- Free fire transfer - Guide
- Anvi folder locker reset key - Guide
- Transfer data from one excel worksheet to another automatically - Guide
- Steam screenshot folder - Guide
- How to make a folder on samsung - Guide
2 responses
unik1
Posts
8
Registration date
Thursday February 21, 2008
Status
Member
Last seen
May 17, 2009
8
Feb 27, 2008 at 05:08 AM
Feb 27, 2008 at 05:08 AM
ssh has nothing to do with ftp. Both can work simultaneously. Here is the usage
cheers hope this will help!
cheers hope this will help!
[Dal]
Posts
6198
Registration date
Tuesday September 14, 2004
Status
Contributor
Last seen
December 13, 2024
31
Feb 27, 2008 at 07:31 AM
Feb 27, 2008 at 07:31 AM
Something might be missing ;-)
To get help on the usage of a Linux command, you use the manual pages. For "scp", you type this in a terminal:
man scp
Now, as an example, suppose that your data is on ServerA under /home/john/ and you want to transfer it to ServerB logging in ServerB as user "paul" and saving the data under an existing directory located there /home/paul/john-bak/, you would do this on ServerA:
cd /home
scp -r john/ paul@ServerB:/home/paul/john-bak/
Dal
To get help on the usage of a Linux command, you use the manual pages. For "scp", you type this in a terminal:
man scp
Now, as an example, suppose that your data is on ServerA under /home/john/ and you want to transfer it to ServerB logging in ServerB as user "paul" and saving the data under an existing directory located there /home/paul/john-bak/, you would do this on ServerA:
cd /home
scp -r john/ paul@ServerB:/home/paul/john-bak/
Dal