LinuxQuestions.org
Download your favorite Linux distribution at LQ ISO.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > 2012 LinuxQuestions.org Members Choice Awards
User Name
Password
2012 LinuxQuestions.org Members Choice Awards This forum is for the 2012 LinuxQuestions.org Members Choice Awards.
You can now vote for your favorite products of 2012. This is your chance to be heard! Voting ends on February 4th.


Notices


View Poll Results: Backup Application of the Year
AMANDA 10 2.87%
Areca-Backup 3 0.86%
Back In Time 11 3.16%
BackupPC 10 2.87%
Bacula 12 3.45%
Clonezilla 40 11.49%
cpio 2 0.57%
dump 4 1.15%
Duplicity 10 2.87%
FSArchiver 4 1.15%
luckyBackup 17 4.89%
partimage 4 1.15%
rdiff-backup 7 2.01%
rsnapshot 19 5.46%
rsync 149 42.82%
tar 38 10.92%
Time Vault 1 0.29%
G4L 2 0.57%
Deja Dup 5 1.44%
Redo Backup and Recovery 0 0%
Voters: 348. You may not vote on this poll

Reply
  Search this Thread
Old 12-18-2012, 11:13 AM   #16
headmastersquall
LQ Newbie
 
Registered: Aug 2012
Posts: 2

Rep: Reputation: Disabled
My favorite backup software


My favorites are:

caatinga (Found at https://github.com/headmastersquall/caatinga)
rsnapshot

because I like fast backups that maintain history of the file system. These tools also store the backups in a normal file system so you don't need to use special tools to restore data.
 
Old 12-18-2012, 05:47 PM   #17
Bill Gates 666
Member
 
Registered: Dec 2003
Location: Cambridge
Distribution: Arch, Gentoo, OpenSUSE
Posts: 70

Rep: Reputation: Disabled
Thumbs up

Although it only piggy-backs on rsync I had to give some love to fs-archiver. Great little tool. Even plays nice with Windows boot partitions. Version 0.7 will be something special when it is released!!
 
Old 12-18-2012, 07:05 PM   #18
vtbludgeon
Member
 
Registered: Sep 2002
Location: New Jersey, USA
Distribution: Ubuntu, Xubuntu, Debian
Posts: 62

Rep: Reputation: 18
s3cmd and an account on http://dreamhost.com/cloud/dreamobjects/ or Amazon s3.

If the backup is on the same physical site as the data, and some disaster blows the whole house away, it doesn't matter how clever and diligent your backup practices are.
 
Old 12-18-2012, 09:33 PM   #19
DaneM
Member
 
Registered: Oct 2003
Location: Chico, CA, USA
Distribution: Linux Mint
Posts: 881

Rep: Reputation: 130Reputation: 130
Smile Rsync command, FYI

For those who haven't tried rsync, try this:

sudo rsync -c -r -t -p -o -g -v --progress --delete -l -s /source/dir/ /dest/dir

The only reason I didn't try rsync sooner is because it's got a bit of a "learning curve." Note the trailing slash on the source dir.

Love rsync!

:-)
 
Old 12-19-2012, 02:58 PM   #20
Poprocks
Member
 
Registered: Sep 2003
Location: Toronto, Canada
Distribution: Slackware
Posts: 522

Rep: Reputation: 279Reputation: 279Reputation: 279
rsync. How could you beat it? It does everything one would need for the purpose of backups and does it well.
 
Old 12-19-2012, 06:57 PM   #21
paolode
LQ Newbie
 
Registered: Dec 2012
Posts: 8

Rep: Reputation: Disabled
clonezilla
 
Old 12-20-2012, 05:14 AM   #22
bernardofpc
LQ Newbie
 
Registered: Aug 2006
Posts: 10

Rep: Reputation: 1
Quote:
Originally Posted by DaneM View Post
For those who haven't tried rsync, try this:

sudo rsync -c -r -t -p -o -g -v --progress --delete -l -s /source/dir/ /dest/dir
Note that rsync (as cp) has a -a --archive option that does most of the work for backups (of course someone would come up with it, given its obvious usefullness). In particular, in rsync, -a equals -rtpoglD, which differs from yours in the only fact that it also preservers device nodes and special files in the process. So, you might get

Code:
sudo rsync -av -c --progress --delete -s /source/dir/ /dest/dir
which is easier to remember (putting "-av" is almost an immediate reflex when I write "rsync"). The --delete has its pros and cons, the -c (for checksumming) is nice, but I think that for cron jobs --progress is somewhat strange ;-) (though interesting in a one-shot)
 
Old 12-20-2012, 06:38 PM   #23
DaneM
Member
 
Registered: Oct 2003
Location: Chico, CA, USA
Distribution: Linux Mint
Posts: 881

Rep: Reputation: 130Reputation: 130
Good calls, bernardofpc. :-)

I like almost everything the -a option does (including its fewer keystrokes), but I wonder what the benefit of copying directories without recursing (-d) is? Maybe I'm missing something.

I use this command to clone one drive of personal data to another, including removing junk files and such. For an incremental/archive backup, --delete is probably inappropriate. For my purposes, though, it keeps everything able to fit on one hard drive! :-)

I agree with you on the -c (MD5sum check) option, since it's quite slow and CPU-intensive. I only use it in a "one-shot" context. For a cron job, I'd almost certainly leave it out. It's good for "making extra sure," but not so much for anything else.
 
Old 12-20-2012, 10:30 PM   #24
parkerlreed
LQ Newbie
 
Registered: Dec 2012
Posts: 5

Rep: Reputation: Disabled
dd would be a nice addition to the list.
 
Old 12-23-2012, 03:13 PM   #25
DaneM
Member
 
Registered: Oct 2003
Location: Chico, CA, USA
Distribution: Linux Mint
Posts: 881

Rep: Reputation: 130Reputation: 130
Good call, parkerlreed. Likewise, NTFSclone is great for using Linux to backup Windows boxes. Used it every day for a while, at a computer shop.
 
Old 12-24-2012, 02:47 AM   #26
thumbelina
LQ Newbie
 
Registered: Oct 2006
Location: USA
Distribution: CentOS,Fedora,Ubuntu,Mint,Mageia,OPNsense
Posts: 17

Rep: Reputation: 8
Quote:
Originally Posted by parkerlreed View Post
dd would be a nice addition to the list.
Agreed. I have no shortage of disk, so I prefer simply imaging most machines. It is the fastest full backup,
and restore for any major catastrophe (ie: dead drive ) by far.

But since you don't consider it as a candidate, I use rsync quite alot.
 
Old 12-28-2012, 05:18 AM   #27
redfox2807
Member
 
Registered: Jul 2012
Distribution: Debian testing/stable, Gentoo, CentOS 7, Sailfish OS, Android
Posts: 167

Rep: Reputation: 31
I use Synkron most of the time. Voted for rsync as it's my second favourite
 
Old 12-28-2012, 09:56 AM   #28
JZL240I-U
Senior Member
 
Registered: Apr 2003
Location: Germany
Distribution: openSuSE Tumbleweed-KDE, Mint 21, MX-21, Manjaro
Posts: 4,629

Rep: Reputation: Disabled
Backintime. But I'm experimenting further. Years ago I used rsnapshot. I'll look again, when the polls are done.

<edit> Backintime is a GUI / frontend for rsync... </edit>

Last edited by JZL240I-U; 01-11-2013 at 01:47 AM.
 
Old 12-31-2012, 01:22 PM   #29
Linux.tar.gz
Senior Member
 
Registered: Dec 2003
Location: Paris
Distribution: Slackware forever.
Posts: 2,534

Rep: Reputation: 100Reputation: 100
Ghost for Linux (g4l) is missing !
 
Old 12-31-2012, 01:24 PM   #30
jeremy
root
 
Registered: Jun 2000
Distribution: Debian, Red Hat, Slackware, Fedora, Ubuntu
Posts: 13,600

Original Poster
Rep: Reputation: 4083Reputation: 4083Reputation: 4083Reputation: 4083Reputation: 4083Reputation: 4083Reputation: 4083Reputation: 4083Reputation: 4083Reputation: 4083Reputation: 4083
G4L has been added.

--jeremy
 
  


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
Backup Application of the Year jeremy 2011 LinuxQuestions.org Members Choice Awards 58 02-13-2012 07:09 AM
Backup Application of the Year jeremy 2010 LinuxQuestions.org Members Choice Awards 43 03-14-2011 10:06 AM
Backup Application of the Year jeremy 2009 LinuxQuestions.org Members Choice Awards 39 03-14-2011 09:50 AM
Backup Application of the Year jeremy 2008 LinuxQuestions.org Members Choice Awards 46 03-05-2010 10:50 PM

LinuxQuestions.org > Forums > 2012 LinuxQuestions.org Members Choice Awards

All times are GMT -5. The time now is 02:58 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