copy file from local to ssh code example

Example 1: copy from local to ssh ubuntu

scp -r your_user_name@ip_address_of_PCA:/path/to/remote/directory /path/to/local/directory

Example 2: centos copy files ssh

scp <source> <destination>

#To copy a file from B to A while logged into B:
scp /path/to/file username@a:/path/to/destination

#To copy a file from B to A while logged into A:
scp username@b:/path/to/file /path/to/destination

Example 3: ssh transfer file from local to remote

scp file.txt [email protected]:/remote/directory

Example 4: how to copy file using ssh

# This need to be done in server side only
$ sudo apt install openssh-server
$ sudo systemctl enable ssh
$ sudo systemctl start ssh
# Need to be done in client side only
$ scp myfile.txt remote_user@remote_ip_address

Example 5: copy file from ssh server to local

scp host_name:file_server path_local

Example 6: copy files from local to host ssh

$ scp * remoteuser@remoteserver:/remote/folder/