The following is a command to easily do incremental backups in linux using rsync:
sudo rsync --delete -azvv /source_path /destination_path
sudo rsync --delete -azvv /source_path /destination_path
using the --delete options, files no longer present in the source will be deleted also in the destination path.
-a: recursively mode
-z: compression mode
-vv: verbosity mode