Linux Ask!

Linux Ask! is a Q & A web site specific for Linux related questions. Questions are collected, answered and audited by experienced Linux users.

How to mirror a directory to a remote server over SSH?

Answer:

You can use rsync command for this purpose

Assume you want to mirror the local folder "/home/john" to remote server 192.168.1.5, under the folder "/data/backup/", you need to use the following command

rsync -avuz -e ssh /home/john 192.168.1.5:/data/backup/

If you want to dry-run the rsync, use the "n" flag, e.g.

rsync -avuzn -e ssh /home/john 192.168.1.5:/data/backup/

For more options, checkout the rsync document: http://www.samba.org/ftp/rsync/rsync.html

  1. Copy file to remote server using scp
  2. Edit a remote file with vim over SSH
  3. Mirror a web site using wget
  4. Running a command on the remote server
  5. Use an alternative port when connecting to remote server using SSH

Leave a Reply

(required)

(required)

You may use these HTML tags and attributes: <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <strike> <strong>