Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR SHELL

upload large file to remote server in linux

# Copy a file from remote server to local
$ scp remotehost:<remote_source> <local_destination>

## Upload local file to remote server from linux
# For small file
$ scp <local_source> remotehost:<remote_destination>

# For big file
$ rsync -avzP <local_source> remotehost:<remote_destination>
 
PREVIOUS NEXT
Tagged: #upload #large #file #remote #server #linux
ADD COMMENT
Topic
Name
8+6 =