 |
 |
 |
 |
| Servers & Networking Discuss any Fedora server problems and Networking issues such as dhcp, IP numbers, wlan, modems, etc. |

19th June 2006, 03:35 PM
|
 |
Registered User
|
|
Join Date: Mar 2006
Location: Gulbene - Latvia - Europe
Age: 30
Posts: 292

|
|
|
Best Rsync GUI
Hi, guys!
I'm looking for backing up my File Server (FC5) and need some GUI for Rsync, which could make automatic (without typing every day) backups of my files.
So what do you suggest?
Is out there some good GUI for RSync?
Thanks.
Maris
|

19th June 2006, 04:49 PM
|
 |
Registered User
|
|
Join Date: Mar 2004
Location: Westland, Michigan
Age: 38
Posts: 2,317

|
|
Up front, this doesn't have a GUI but it's based on rsync and is what I use
rsnapshot. www.rsnapshot.org
A pretty simple configuration file and a few cron jobs and you are all done.
Also, if you are just trying to backup your server to another location, you could just use a script with the rync syntax and then run a cron job for this. It's pretty easy and we could certainly help you out with it.
example of a script, call it /root/backupjob.sh
Code:
#!/bin/bash
/usr/bin/rsync -a --delete /directory_to_backup /destination_for_backup
Code:
chmod 700 /root/backupjob.sh
example of crontab entry;
Code:
crontab -e
1 23 * * * /root/backupjob.sh > /dev/null 2>&1 &
__________________
RHCE and MCSE systems administrator
Registered Linux User #375155 For More Info or to register yourself
My Linux box is:
Ubuntu 8.04, Antec Sonata II case with 450-watt PS, AMD 64 X2 4600+ (65 watt), 4GB DDR2 800 RAM, 18X Lite-On DVD burner, Asus M2NPV-VM, Nvidia GeForce 7600GT (256MB), 320GB Western Digital SATA 3.0Gbps, Logitech MX-310, Dell 18" ultrasharp LCD, Microsoft Natural Ergonomic Keyboard 4000 and 2.1 Boston Acoustics sound system..
Last edited by pparks1; 19th June 2006 at 04:54 PM.
|

21st June 2006, 11:08 AM
|
 |
Registered User
|
|
Join Date: Mar 2006
Location: Gulbene - Latvia - Europe
Age: 30
Posts: 292

|
|
|
Thanks, pparks1! i TESTED RSYNC. WORKS FINE.
Did not figured out, how rsnapshot works.
[root@bobis bin]# /usr/bin/rsync -a /var/spool/hylafax/recvq/ 192.168.1.20:/home/backup/recvq
and
[root@bobis bin]# /usr/bin/rsync -a /home/tools/ 192.168.1.20:/home/backup/tools
and it copies 15,5 MB in one second. super! i like it.
Just want to make it automatic. !???! how, still trying to understand.
Last edited by marisdembovskis; 4th July 2006 at 12:47 PM.
|

16th June 2011, 02:20 PM
|
 |
Registered User
|
|
Join Date: Nov 2009
Location: Danmark
Posts: 50

|
|
|
Re: Best Rsync GUI
any other GUI suggestions?
|

16th June 2011, 02:53 PM
|
 |
Registered User
|
|
Join Date: Mar 2009
Location: Lancaster, UK
Posts: 883

|
|
|
Re: Best Rsync GUI
Quote:
Originally Posted by marisdembovskis
Thanks, pparks1! i TESTED RSYNC. WORKS FINE.
Did not figured out, how rsnapshot works.
[root@bobis bin]# /usr/bin/rsync -a /var/spool/hylafax/recvq/ 192.168.1.20:/home/backup/recvq
and
[root@bobis bin]# /usr/bin/rsync -a /home/tools/ 192.168.1.20:/home/backup/tools
and it copies 15,5 MB in one second. super! i like it.
Just want to make it automatic. !???! how, still trying to understand.
|
How automatic are you wanting it?
You could use `date` and then if you do one backup a day it will have a unique name.
I use crontab and rsync with a little script to have a 3 day rotation of backups.
What level are you looking for?
|

16th June 2011, 05:29 PM
|
|
Registered User
|
|
Join Date: Sep 2004
Posts: 2,008

|
|
|
Re: Best Rsync GUI
be careful to preserve permissions and ownership with rsync, and always do it as root, also the trailing slash makes a difference on directories. i use:
Code:
rsync -avzp --delete --progress --numeric-ids /source/ /destination/
if you want a gui look into backintime-gnome or maybe deja-dup
|

17th June 2011, 09:20 AM
|
 |
Retired Administrator
|
|
Join Date: Oct 2006
Posts: 21,509

|
|
|
Re: Best Rsync GUI
|

17th June 2011, 10:58 AM
|
|
Registered User
|
|
Join Date: Aug 2010
Location: Al Ain, UAE
Posts: 1,057

|
|
|
Re: Best Rsync GUI
Well, where the GUIs usually go wrong is that they allow you specify exactly what you want to backup...
However, rsync works best if you tell it what NOT to backup, since the schtuff that you WANT to backup is changing all the time!
So I make a one line rsync script which tell it to backup /home, and then I use --exclude, to avoid backing up crud like *cache*, *trash*, *iso and so on, then I drop this one line script into /etc/cron.daily. The result is a set and forget backup system.
|

22nd June 2011, 03:50 AM
|
|
Registered User
|
|
Join Date: Oct 2010
Posts: 67

|
|
|
Re: Best Rsync GUI
Lucky Backup GUI for rsync.
Has excellent manual.
FYI
|
| Thread Tools |
Search this Thread |
|
|
|
| Display Modes |
Linear Mode
|
Posting Rules
|
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts
HTML code is Off
|
|
|
Similar Threads
|
| Thread |
Thread Starter |
Forum |
Replies |
Last Post |
|
rsync help?
|
munna_dude |
Servers & Networking |
6 |
10th July 2007 06:25 PM |
|
How to use rsync?
|
SeRi@lDiE |
Using Fedora |
4 |
3rd January 2007 05:34 AM |
|
rsync help
|
leaded |
Using Fedora |
1 |
3rd November 2005 03:03 AM |
|
rsync
|
ryan.overton |
Servers & Networking |
0 |
13th May 2005 11:42 PM |
Current GMT-time: 19:12 (Thursday, 23-05-2013)
|
|
 |
 |
 |
 |
|
|