Fedora Linux Support Community & Resources Center
  #1  
Old 19th June 2006, 03:35 PM
marisdembovskis's Avatar
marisdembovskis Offline
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
  #2  
Old 19th June 2006, 04:49 PM
pparks1's Avatar
pparks1 Offline
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.
  #3  
Old 21st June 2006, 11:08 AM
marisdembovskis's Avatar
marisdembovskis Offline
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.
  #4  
Old 16th June 2011, 02:20 PM
infestor's Avatar
infestor Offline
Registered User
 
Join Date: Nov 2009
Location: Danmark
Posts: 50
linuxchrome
Re: Best Rsync GUI

any other GUI suggestions?
  #5  
Old 16th June 2011, 02:53 PM
Adunaic's Avatar
Adunaic Offline
Registered User
 
Join Date: Mar 2009
Location: Lancaster, UK
Posts: 883
linuxfirefox
Re: Best Rsync GUI

Quote:
Originally Posted by marisdembovskis View Post
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?
  #6  
Old 16th June 2011, 05:29 PM
sej7278 Offline
Registered User
 
Join Date: Sep 2004
Posts: 2,008
linuxfirefox
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
  #7  
Old 17th June 2011, 09:20 AM
leigh123linux's Avatar
leigh123linux Offline
Retired Administrator
 
Join Date: Oct 2006
Posts: 21,509
linuxredhatfirefox
Re: Best Rsync GUI

Quote:
Originally Posted by infestor View Post
any other GUI suggestions?
grsync

http://www.opbyte.it/grsync/

http://koji.fedoraproject.org/koji/p...packageID=5015
  #8  
Old 17th June 2011, 10:58 AM
flyingfsck Online
Registered User
 
Join Date: Aug 2010
Location: Al Ain, UAE
Posts: 1,057
linuxfirefox
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.
  #9  
Old 22nd June 2011, 03:50 AM
patrick013 Offline
Registered User
 
Join Date: Oct 2010
Posts: 67
linuxfedorafirefox
Re: Best Rsync GUI

Lucky Backup GUI for rsync.
Has excellent manual.

FYI
Closed Thread

Tags
gui, rsync

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump

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)

TopSubscribe to XML RSS for all Threads in all ForumsFedoraForumDotOrg Archive
logo

All trademarks, and forum posts in this site are property of their respective owner(s).
FedoraForum.org is privately owned and is not directly sponsored by the Fedora Project or Red Hat, Inc.

Privacy Policy | Term of Use | Posting Guidelines | Archive | Contact Us | Founding Members

Powered by vBulletin® Copyright ©2000 - 2012, vBulletin Solutions, Inc.

FedoraForum is Powered by RedHat