Hi, today I was moving my server to cloud. As part of that process, I need to copy all my files to the linux server in a cloud environment. How am i going to copy the files securly from a distance server to another distance server. Its so simple with linux
For example;
Hope this might help someone.
scp user@sourceServer:/file/folder/location user@destinationServer:/destination/folderYou can use the IP/domain Name of the destination/source server.
For example;
scp banu@192.168.100.5:/home/banu/myfile banu@192.168.100.55:/home/banu/In the second Example, the -r signals for recursive copy.
scp -r banu@192.168.100.5:/home/banu/myfolder banu@192.168.100.55:/home/banu/
Hope this might help someone.
No comments:
Post a Comment