LinuxQuestions.org
Share your knowledge at the LQ Wiki.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Software
User Name
Password
Linux - Software This forum is for Software issues.
Having a problem installing a new program? Want to know which application is best for the job? Post your question in this forum.

Notices


Reply
  Search this Thread
Old 05-25-2011, 09:57 AM   #1
Yuhan
Member
 
Registered: Oct 2010
Posts: 374

Rep: Reputation: 3
Best Backup program for Ubuntu?


Does anyone have a suggestion for what is the best and easiest to use backup program for Ubuntu 10.10? I have an external hard drive and I'd like a program that can be used either manually or on a scheduled basis. I know there are several programs out there but I'd like to know which program(s) people have found most useful. Thanks in advance!
 
Old 05-25-2011, 10:00 AM   #2
Nylex
LQ Addict
 
Registered: Jul 2003
Location: London, UK
Distribution: Slackware
Posts: 7,464

Rep: Reputation: Disabled
rsync has to be up there.
 
Old 05-25-2011, 10:30 AM   #3
vikas027
Senior Member
 
Registered: May 2007
Location: Sydney
Distribution: RHEL, CentOS, Ubuntu, Debian, OS X
Posts: 1,305

Rep: Reputation: 107Reputation: 107
I liked rsnapshot based on rsync.
 
Old 05-25-2011, 10:32 AM   #4
repo
LQ 5k Club
 
Registered: May 2001
Location: Belgium
Distribution: Arch
Posts: 8,529

Rep: Reputation: 899Reputation: 899Reputation: 899Reputation: 899Reputation: 899Reputation: 899Reputation: 899
+1 for rsync
If you want the GUI:grsync

Kind regards
 
Old 05-26-2011, 12:04 PM   #6
Yuhan
Member
 
Registered: Oct 2010
Posts: 374

Original Poster
Rep: Reputation: 3
Which program gives the greater versatility in terms of ability to back up full disk, specific files, auto backup, etc.? And for someone still new to Linux (Ubuntu) is it easier to use a GUI program or one that operates directly from the terminal? It's sounds like grsync may be easiest, but is it as flexible as some of the other options? I've also heard of one called "deja-dup"--anyone know about it?
 
Old 05-26-2011, 06:56 PM   #7
Yuhan
Member
 
Registered: Oct 2010
Posts: 374

Original Poster
Rep: Reputation: 3
Hmm...Looking at both rsync and grsync I'm wondering which is easier to use? Is the front end really an advantage or is it simpler just to work through the terminal?
 
Old 05-26-2011, 08:56 PM   #8
frankbell
LQ Guru
 
Registered: Jan 2006
Location: Virginia, USA
Distribution: Slackware, Ubuntu MATE, Mageia, and whatever VMs I happen to be playing with
Posts: 19,314
Blog Entries: 28

Rep: Reputation: 6137Reputation: 6137Reputation: 6137Reputation: 6137Reputation: 6137Reputation: 6137Reputation: 6137Reputation: 6137Reputation: 6137Reputation: 6137Reputation: 6137
Back in Time is a graphical frontend for rsync.

Sourcetrunk gave it a good review.
 
Old 05-26-2011, 11:25 PM   #9
Nylex
LQ Addict
 
Registered: Jul 2003
Location: London, UK
Distribution: Slackware
Posts: 7,464

Rep: Reputation: Disabled
Quote:
Originally Posted by Yuhan View Post
Hmm...Looking at both rsync and grsync I'm wondering which is easier to use? Is the front end really an advantage or is it simpler just to work through the terminal?
Personally, I can't really see what's too difficult about using the terminal (whether for rsync or otherwise).
 
Old 05-28-2011, 12:15 PM   #10
Yuhan
Member
 
Registered: Oct 2010
Posts: 374

Original Poster
Rep: Reputation: 3
There's nothing difficult about using the terminal providing you know how to use script effectively. I can use it when the exact text is furnished and I can just cut and paste. If you're serious about using Linux and becoming more comfortable with it, do you think it's advisable to use the terminal commands when possible rather than relying on
front-end apps? I realize this is somewhat of a judgment call, but my impression is the real advantages of Linux come from relying less on front-end solutions and more on terminal script. Basically here I'm just trying to get a program for backing up my hard drive. Is it possible, through a terminal application, to set something up that will automatically back up your drive on a periodic basis?
 
Old 05-28-2011, 12:49 PM   #11
Nylex
LQ Addict
 
Registered: Jul 2003
Location: London, UK
Distribution: Slackware
Posts: 7,464

Rep: Reputation: Disabled
Quote:
Originally Posted by Yuhan View Post
There's nothing difficult about using the terminal providing you know how to use script effectively. I can use it when the exact text is furnished and I can just cut and paste. If you're serious about using Linux and becoming more comfortable with it, do you think it's advisable to use the terminal commands when possible rather than relying on
front-end apps?
It's probably a good idea to learn how to use the terminal, yes. It can be very powerful and efficient.

Quote:
to set something up that will automatically back up your drive on a periodic basis?
Cron is designed for doing such tasks.
 
Old 06-03-2011, 09:27 AM   #12
Yuhan
Member
 
Registered: Oct 2010
Posts: 374

Original Poster
Rep: Reputation: 3
Okay...so if I use rsync in the terminal, a) what command line do I use to make the initial backup, and b) what command do I use to make subsequent backups covering material included since the time of the previous backup? I'm using a laptop here so I won't have the external drive attached all the time. Can subsequent backups be handled manually or is it preferable to have a scheduled backup where I would know to attach the external drive at that time? (Of course the problem with that is I could forget to attach the external drive--nothing is perfect, I realize!)
 
Old 06-03-2011, 01:23 PM   #13
Nylex
LQ Addict
 
Registered: Jul 2003
Location: London, UK
Distribution: Slackware
Posts: 7,464

Rep: Reputation: Disabled
For a) and b), read the man page. It's quite detailed and gives some useful examples. For b) specifically, you won't need to use a different set of options. You can do it either way. There's no problem with, say, scheduling a backup (via cron) and then performing a manual one in between the scheduled ones. rsync will essentially detect any changes in files and copy only those that have been modified.
 
Old 06-03-2011, 09:09 PM   #14
frankbell
LQ Guru
 
Registered: Jan 2006
Location: Virginia, USA
Distribution: Slackware, Ubuntu MATE, Mageia, and whatever VMs I happen to be playing with
Posts: 19,314
Blog Entries: 28

Rep: Reputation: 6137Reputation: 6137Reputation: 6137Reputation: 6137Reputation: 6137Reputation: 6137Reputation: 6137Reputation: 6137Reputation: 6137Reputation: 6137Reputation: 6137
When I was figuring out rsync, I found the man pages and online docs to really quite dense for someone new to it. What most of them omitted was a few good examples, with explanations, for beginners.

Here's the command that I finally settled on that works for me to backup the entire contents of my home folder to my file server:

Code:
rsync -arv /home/[username] [username]@[local-ip-address]:[path-to-backups-folder]
 
Old 06-03-2011, 09:21 PM   #15
Rearden888
LQ Newbie
 
Registered: Jan 2010
Location: Anacortes, WA
Distribution: Arch, Debian, CentOS
Posts: 27
Blog Entries: 2

Rep: Reputation: 3
I use duplicty/duply for my server.
 
  


Reply



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 Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
Need file backup program for Ubuntu klarsin Linux - Software 4 05-12-2011 08:25 AM
Backup program or command for Ubuntu Yuhan Linux - Newbie 2 04-04-2011 02:35 AM
backup question - NFS share in Ubuntu 9.04 backup to READYNAS NV+ newellrp1 Linux - Newbie 3 05-19-2009 03:57 PM
Backup program keep thort Linux - Newbie 2 07-08-2006 06:28 AM
Backup - what program is best? pix Linux - Newbie 2 07-15-2003 09:06 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - Software

All times are GMT -5. The time now is 10:34 PM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration