Using rsync and Timeshift a GUI for rsync

Miscellaneous tools
Post Reply
Message
Author
labbe5
Posts: 2159
Joined: Wed 13 Nov 2013, 14:26
Location: Canada

Using rsync and Timeshift a GUI for rsync

#1 Post by labbe5 »

[url]https://www.linuxliteos.com/forums/tuto ... acking-up/[/url]

I copy/paste command lines from tutorial :

To back-up :
sudo rsync -aAXv --exclude={"/dev/*","/proc/*","/sys/*","/tmp/*","/run/*","/mnt/*","/media/*","/lost+found"} /home/mike/Backup/

To restore :
sudo rsync -aAXv --delete={"/dev/*","/proc/*","/sys/*","/tmp/*","/run/*","/mnt/*","/media/*","/lost+found"} /home/mike/Backup/

sudo is used in Dog, not in Puppy (just a reminder).

Further reading :
[url]https://www.datamation.com/open-source/ ... users.html[/url]

Timeshift is a GUI for rsync, and a backup tool for all Linux distros.
To install, go to Github : [url]https://github.com/teejee2008/timeshift[/url]

Post Reply