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


Notices


View Poll Results: Backup Application of the Year
AMANDA 4 1.16%
Areca-Backup 2 0.58%
Back In Time 8 2.32%
BackupPC 7 2.03%
Bacula 13 3.77%
Clonezilla 48 13.91%
cpio 2 0.58%
Deja Dup 5 1.45%
dump 4 1.16%
Duplicity 6 1.74%
FSArchiver 7 2.03%
G4L 2 0.58%
luckyBackup 21 6.09%
partimage 2 0.58%
rdiff-backup 6 1.74%
Redo Backup and Recovery 6 1.74%
rsnapshot 17 4.93%
rsync 137 39.71%
tar 45 13.04%
Time Vault 2 0.58%
Burp 1 0.29%
Voters: 345. You may not vote on this poll

Reply
  Search this Thread
Old 01-01-2014, 12:13 AM   #16
allend
LQ 5k Club
 
Registered: Oct 2003
Location: Melbourne
Distribution: Slackware64-15.0
Posts: 6,371

Rep: Reputation: 2749Reputation: 2749Reputation: 2749Reputation: 2749Reputation: 2749Reputation: 2749Reputation: 2749Reputation: 2749Reputation: 2749Reputation: 2749Reputation: 2749

My backup solution is a custom bash script based around piping the results from find to cpio, so cpio it is.
 
Old 01-02-2014, 11:47 AM   #17
Medievalist
Member
 
Registered: Aug 2003
Distribution: Dead Rat
Posts: 191

Rep: Reputation: 56
I use shootsnap, with a restricted keyset and a large AOE array.

http://typinganimal.net/code/textify.php?f=shootsnap.sh
 
Old 01-02-2014, 03:46 PM   #18
ruario
Senior Member
 
Registered: Jan 2011
Location: Oslo, Norway
Distribution: Slackware
Posts: 2,557

Rep: Reputation: 1761Reputation: 1761Reputation: 1761Reputation: 1761Reputation: 1761Reputation: 1761Reputation: 1761Reputation: 1761Reputation: 1761Reputation: 1761Reputation: 1761
Quote:
Originally Posted by allend View Post
My backup solution is a custom bash script based around piping the results from find to cpio, so cpio it is.
Filesize limitations with the bin, odc or newc file formats would make GNU cpio a poor choice for many. If you like cpio I would use bsdcpio (or heirloom cpio) with pax format or use afio.

You could also get GNU tar to use the pipe to read its file list, e.g. "tar --no-recursion -T- -cvf archive.tar", again with pax file format or even just gnutar file format. Neither have any serious limitations.

Pax is another option but make sure it is heirloom Pax as the pax util provided by most distros cannot actually make pax formatted archives, only ustar, which is really no better than newc.

Last edited by ruario; 01-02-2014 at 04:03 PM. Reason: clarified I was talking about file formats and mentioned heirloom cpio; mentioned GNU tar; mentioned pax
 
1 members found this post helpful.
Old 01-02-2014, 05:41 PM   #19
allend
LQ 5k Club
 
Registered: Oct 2003
Location: Melbourne
Distribution: Slackware64-15.0
Posts: 6,371

Rep: Reputation: 2749Reputation: 2749Reputation: 2749Reputation: 2749Reputation: 2749Reputation: 2749Reputation: 2749Reputation: 2749Reputation: 2749Reputation: 2749Reputation: 2749
MAS (To use Tim Minchen's suggestion of "mildly amused smirk" rather than LOL ).

Thanks for the technical advice, but for the situation I have, backups of recently acquired files on a suite of Windows machines, I like cpio for the ability to manipulate path names. It has been working fine for years. I do not want to use a packed archive format, as what is required is to be able to read files directly from the Windows machines. It is also easier to demonstrate the recovery process to the occasional external auditor when our quality system is being assessed. The disaster recovery plan for these Windows machines (basically dedicated instrument controllers) is to restore a known good disk image, then restore any needed recently acquired files from backup. The file size issue will not occur due to the way these Windows machines are used.

I think what I am really trying to say is just the truism that the best choice of backup system heavily depends on what taking backups is trying to achieve.
 
Old 01-03-2014, 02:19 AM   #20
ruario
Senior Member
 
Registered: Jan 2011
Location: Oslo, Norway
Distribution: Slackware
Posts: 2,557

Rep: Reputation: 1761Reputation: 1761Reputation: 1761Reputation: 1761Reputation: 1761Reputation: 1761Reputation: 1761Reputation: 1761Reputation: 1761Reputation: 1761Reputation: 1761
Quote:
Originally Posted by allend View Post
Thanks for the technical advice, but for the situation I have, backups of recently acquired files on a suite of Windows machines, I like cpio for the ability to manipulate path names.
You can do the same with numerous other utils, including those I mentioned (e.g. GNU tar has the --xform switch).

Quote:
Originally Posted by allend View Post
It has been working fine for years.
Fair enough but as computing changes and common file sizes increase you may find a time where you hit the individual file size limitations of the old cpio formats (bin = 2GB, odc = 8GB, newc = 4GB). I know that I personally have multimedia files and Linux distro ISO images in these size ranges lying around on my disks. afio extends the odc format (only for entries that need it) past these limits and pax has no real, practical limits right from the get go (9 EB file sizes are possible).

Quote:
Originally Posted by allend View Post
I do not want to use a packed archive format, as what is required is to be able to read files directly from the Windows machines.
I'm not sure what you mean by this but the pax file format is the POSIX.1-2001 standard file format and an extension of tar. There are numerous utilities available on Windows that will open its contents just fine. Additionally as afio works with odc by default and only extends the header on entries that exceed its limitations its archives should also be readable using common Windows archiving tools, particularly as you state no files currently do exceed the limits.

Quote:
Originally Posted by allend View Post
It is also easier to demonstrate the recovery process to the occasional external auditor when our quality system is being assessed. The disaster recovery plan for these Windows machines (basically dedicated instrument controllers) is to restore a known good disk image, then restore any needed recently acquired files from backup.
I fail to see how this would be different if you used pax or afio.

Quote:
Originally Posted by allend View Post
The file size issue will not occur due to the way these Windows machines are used.
Fair enough, I did not know your specific use case until you just stated it, so it could well have been an issue. In any case you can just take the information (assuming you were not already aware) as something to keep in mind for the future.

Quote:
Originally Posted by allend View Post
I think what I am really trying to say is just the truism that the best choice of backup system heavily depends on what taking backups is trying to achieve.
Sure, I agree with that. It was just a warning that (IMHO at least) cpio (the GNU implementation in particular) has run out of steam as it is no longer being actively developed to handle the types of files that are ever more common in the modern world. So it was just a heads up, so that you don't get bitten in the future. Like all advice on the internet you are free to just ignore it!

Last edited by ruario; 01-03-2014 at 02:25 AM.
 
Old 01-03-2014, 05:13 AM   #21
acampbell
Member
 
Registered: Nov 2003
Location: London
Distribution: Debian
Posts: 118

Rep: Reputation: 16
Should inclute tarsnap - defitely my choice.
 
Old 01-06-2014, 01:38 PM   #22
rjleaf
LQ Newbie
 
Registered: Jan 2014
Location: Worcester, MA
Distribution: Debian Jessie
Posts: 10

Rep: Reputation: Disabled
Having a single backup isn't exactly the best idea for protecting your data. If one of your backup mediums gets damaged or destroyed, it's very difficult to restore from your backup.

I follow the 3-2-1 backup philosophy quite strongly: 3 copies, 2 mediums, 1 off-site.

I'm using CrashPlan for my off-site backup solution and Deja-Dup for my local backup. Having a local backup is immensely useful, since there are many times where you might need to restore your data from a backup but not have the time, patience, or bandwidth to restore from an online backup service; the online backup service comes in handy when something catastrophic occurs, such as a fire, theft, or natural disaster.

I also store most of my media files on a dedicated file server at my friend's house in another state (since he has a fast FiOS connection).
 
Old 01-07-2014, 05:46 AM   #23
acampbell
Member
 
Registered: Nov 2003
Location: London
Distribution: Debian
Posts: 118

Rep: Reputation: 16
I agree about the value of a local backup. I was thinking about off-site backups when I mentiond tarsnap. I think it's good to have both.
 
Old 01-13-2014, 07:33 PM   #24
chrisretusn
Senior Member
 
Registered: Dec 2005
Location: Philippines
Distribution: Slackware64-current
Posts: 2,969

Rep: Reputation: 1548Reputation: 1548Reputation: 1548Reputation: 1548Reputation: 1548Reputation: 1548Reputation: 1548Reputation: 1548Reputation: 1548Reputation: 1548Reputation: 1548
I use rsnapshot as part of my automated plan. I also use grsync on regular basis for selective backups. FSArchiver is also quite useful.
 
Old 01-15-2014, 03:16 AM   #25
savotije
Member
 
Registered: Oct 2010
Location: Serbia (Europe)
Distribution: Slackware 13.1
Posts: 97

Rep: Reputation: 6
tar
 
Old 01-15-2014, 03:23 AM   #26
metalaarif
Member
 
Registered: Oct 2011
Location: Nepal
Distribution: RHEL, CentOS, Slackware
Posts: 131
Blog Entries: 1

Rep: Reputation: 3
There are many good ones such as: Bacula, Amanda, rsync etc. but I will go for Legendary TAR
 
Old 01-22-2014, 09:28 AM   #27
mariuz
Member
 
Registered: Nov 2003
Distribution: gentoo
Posts: 69

Rep: Reputation: 19
Git annex
http://git-annex.branchable.com/
 
Old 02-03-2014, 12:25 AM   #28
Hans-Michael
LQ Newbie
 
Registered: Jun 2012
Posts: 5

Rep: Reputation: Disabled
CloneZilla
 
Old 02-03-2014, 06:22 AM   #29
hal_tux
LQ Newbie
 
Registered: Aug 2009
Posts: 3

Rep: Reputation: 0
tar with bzip2
 
Old 02-03-2014, 08:44 AM   #30
alldoug
LQ Newbie
 
Registered: Sep 2012
Location: 50 Miles South of Nowhere
Distribution: Arch, Manjaro, Debian, Ubuntu Server
Posts: 4

Rep: Reputation: Disabled
rsync
 
  


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



Similar Threads
Thread Thread Starter Forum Replies Last Post
Backup Application of the Year jeremy 2012 LinuxQuestions.org Members Choice Awards 51 02-03-2013 10:10 PM
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 > 2013 LinuxQuestions.org Members Choice Awards

All times are GMT -5. The time now is 04:52 AM.

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