Pario TechnoBlob
About
Posts
Tag: rsync
Using Lsyncd to perform “live” syncronization of a local directory to a remote directory
This post is a short HOWTO and describes how you can install and run lsyncd to perform a rsync syncronization from local to a remote server using SSH. Lsyncd is a daemon to...
Synchronize current directory with remote one using rsync
This is a simple way to synchronize all the files from the current computer to a remote computer using SSH as transportation protocol. rsync -raz --progress --delete...
rsync backup on a local pc
#!/bin/bash echo "Starting Daily rsync backup on
date
" for FSYS in /home/username/rsync do /usr/bin/rsync -aE --delete $FSYS /home/username/rsync_bck if [ $? != 0 ];...