Posts

Showing posts with the label scp

File copy from local computer to remote computer using SCP

File copy from local computer to remote computer using SCP  let me show you how with commands:   SCP example https://www.geeksforgeeks.org/scp-command-in-linux-with-examples/ Example: To copy a file named file.tx from your local machine to a remote server: scp file.txt username@192.168.1.2:/home/username/ In this example: file.txt is the local file username@192.168.1.2 is the remote server and user /home/username/ is the destination directory on the remote server.   [kliktel-pc ~ ]# man scp [kliktel-pc ~ ]# scp ./Downloads/FreeBSD/write_using_Linux_a_freebsd_img_dd_to_sdX .sh  fred@ghostbsdarm64.hopto.org:write_using_Linux_a_freebsd_img_dd_to_sdX.sh (fred@ghostbsdarm64.hopto.org) Password for fred@Ghost14-selfbuilt-rpi4B-nginx-ts t1: write_using_Linux_a_freebsd_img_dd_to_sdX.sh   100% 6795    27.1KB/s   00:00    fred    is the username ghostbsdarm64.hopto.org   is the remote IP address  ...