In this approach, we create the backup between two directories on the same drive. Below, we’ll copy the files from the “linux1” directory to the “linux2” directory. These directories are all on a similar hard drive, but this would function just as well if the directories were on separate drives.
$ rsync -av --delete linux_directory1 linux_directory2
This copy command will create a backup of linux_directory1 to linux_directory2. The above will synchronize the contents of linux_directory1 and linux_directory2, leaving no gaps between the two. If “rsync ” discovers a file in linux_directory2 that linux_directory1 does not, it will destroy it. If rsync discovers a file in Directory1 that has been updated, created, or destroyed, it will replicate those modifications in linux_directory2.
Now list the contents of linux_directory2 with the below-mentioned command to check whether the data backup was created or not.
$ ls linux_directory2
On Linux, Cron is used for automating command execution like rsync. We can run backups over the whole night on our Linux system, or however frequently you want them to run, using Cron. Run the below-mentioned command to edit the cron table.
$ crontab -e
You can use any editor you’re comfortable with to modify this file. I want to edit a file in the “nano” editor, so I press “1” on the keyboard and press the Enter key. Cron’s syntax is as follows: minutes, hours, day of the month, month of the year, day of the week, command. The below-mentioned command, which is added to crontab, will run rsync to automatically create a backup of linux_directory1 in linux_directory2 every night at sharp 11 PM.
0 23 * * * rsync -av --delete /home/linux/Documents/linux_directory1 /home/linux/Documents/linux_directory2
“0” shows minutes of 23, “23” shows 11, and since we want this command to run daily, we’ll leave the rest of the fields blank by placing “*”. After editing the cron, press escape (Ctrl+S) to save and Ctrl+X to exit the file.
Making a backup copy of your essential data is essential when you are using computers. Different tools are used for backing up data in Linux, in this article we discussed “rsync” to backup data on Ubuntu. The rsync is a command that is particularly used for copying files from local and remote networks. If you want to get saved from the problem of loss of data then follow the detailed procedure in this article.