Skip to main content

Transferring Files via scp and rsync

1. Using scp (Secure Copy Protocol)

scp is a secure way to copy files between a local and a remote system or between two remote systems. It uses SSH (Secure Shell) for encryption, ensuring the transfer is secure.


1.1 Basic Syntax of scp

scp [options] source_file username@remote_host:/destination/path/
  • source_file – The file or directory you want to copy.
  • username@remote_host – The username and IP address (or hostname) of the remote system.
  • /destination/path/ – The directory where the file should be copied.

1.2 Examples of scp Usage

Examples:

1. Copy a File to a Remote Server

scp file.txt user@192.168.1.10:/home/user/
  • Copies file.txt from the local machine to the /home/user/ directory on the remote server with IP 192.168.1.10.
  • It prompts for the password of the remote user.

2. Copy a File from a Remote Server to the Local System

scp user@192.168.1.10:/home/user/file.txt /local/path/
  • Downloads file.txt from the remote server to the local directory /local/path/.

3. Copy an Entire Directory to a Remote Server

scp -r /local/directory user@192.168.1.10:/home/user/
  • The -r option enables recursive copying, including all files and subdirectories.

4. Use a Different Port for SSH

scp -P 2222 file.txt user@192.168.1.10:/home/user/
  • Connects to the remote server on port 2222 instead of the default port 22.

1.3 Using SSH Keys for Authentication

Instead of entering a password every time, you can use SSH key pairs for authentication:

Examples:

1. Generate SSH Keys

ssh-keygen -t rsa
  • Creates a public and private key pair in the ~/.ssh/ directory.

2. Copy the Public Key to the Remote Server

ssh-copy-id user@192.168.1.10
  • Adds the public key to the remote server for passwordless login.

3. Transfer Files Using SSH Keys

scp file.txt user@192.168.1.10:/home/user/
  • Transfers files without asking for a password, using SSH key authentication.

2. Using rsync (Remote Sync)

rsync is a powerful tool for synchronizing files and directories between systems. It is highly efficient because it transfers only the differences between source and destination files.

2.1 Basic Syntax of rsync

rsync [options] source destination
  • source – The path to the files or directories to be copied.
  • destination – The target location, either local or remote.

2.2 Examples of rsync Usage

1. Sync Files to a Remote Server

rsync -avz /local/directory/ user@192.168.1.10:/remote/directory/

-a – Preserves permissions, timestamps, symbolic links, and ownership. -v – Enables verbose mode to display progress. -z – Compresses data during transfer for speed.

2. Sync Files from a Remote Server to Local

rsync -avz user@192.168.1.10:/remote/directory/ /local/directory/
  • Downloads files from the remote server to the local system.

3. Use rsync with SSH for Security

rsync -avz -e ssh /local/directory/ user@192.168.1.10:/remote/directory/
  • The -e ssh option forces rsync to use SSH for encryption.

4. Delete Files on the Destination if They’re Deleted in the Source

rsync -avz --delete /local/directory/ user@192.168.1.10:/remote/directory/
  • Ensures the destination directory mirrors the source, deleting any files not present in the source.

2.3 Preserving Permissions and Timestamps

rsync automatically preserves file permissions and timestamps when using the -a option.

rsync -a /source/directory/ /destination/directory/
  • Ensures all attributes, such as ownership and modification times, are retained.

3. Automating File Transfers with cron

You can automate file transfers using cron, a scheduling tool, for regular backups or synchronization.

Examples: Automate rsync for Daily Backups

1. Edit the Cron Jobs

crontab -e

2. Add the Schedule for Rsync

0 2 * * * rsync -avz /local/backup/ user@192.168.1.10:/remote/backup/
  • This command schedules a backup at 2:00 AM every day.

Tip: You can also redirect logs to a file for monitoring:

0 2 * * * rsync -avz /local/backup/ user@192.168.1.10:/remote/backup/ >> /var/log/backup.log

4. Common Use Cases

4.1 Backups

Regular backups using rsync ensure incremental changes are transferred, reducing network load.
Use SSH for secure connections.

4.2 Mirroring Directories

rsync can mirror entire directories between servers for disaster recovery plans.

4.3 Incremental File Transfers

Ideal for syncing only updated or new files, making it faster than scp.

4.4 Secure File Transfers Between Servers

Use scp for simple one-time transfers and rsync for frequent updates or backups.


5. Quick Recap of Commands

CommandPurpose
scp file.txt user@host:/path/Copy a file securely to a remote server.
scp -r folder user@host:/path/Copy a directory recursively.
rsync -avz /source/ user@host:/destination/Sync a directory with compression and permissions preserved.
rsync -avz --delete /source/ /destination/Mirror directories and delete files not in the source.
ssh-keygen -t rsaGenerate SSH keys for passwordless authentication.
ssh-copy-id user@hostCopy SSH public key to remote server for secure authentication.

Key Takeaways

  • scp is ideal for quick and simple transfers, while rsync is powerful for backups and synchronization.
  • We also explored automating transfers with cron for regular tasks like backups.