BRU LE for Mac OS X 56
GraWil wonders: "The Tolis Group has just released BRU LE for Mac OS X. It is far more reasonably priced than the professional version but it is still priced well above the personal edition for Linux and BSD users. Does anyone have experience they can share about strategies for backing up Powerbook and Desktop Mac I am using a total of 140GB of the 180GB available)?"
WTF? (Score:4, Funny)
Re:WTF? (Score:1)
I read "creme brulee". I'm a nerd but I cook, too. Hence that.
Re:The solution seems simple... (Score:5, Insightful)
Money shouldn't be much of an issue since you're already spending a bunch on the OS, plus you've got two macs sitting around.
--
Just because someone uses macs doesn't mean that they have a bunch of money sitting around.
Yes, Macs are expensive. But there are several good finance programs around that make them much more affordable. Apple Loan is available on their website, and compusa often has a "18 months same as cash"
Re:The solution seems simple... (Score:4, Insightful)
Re:The solution seems simple... (Score:1, Insightful)
Why would I use this over Dantz Retrospect? (Score:5, Interesting)
This product doesn't even support the APPLE superdrive, for pete's sake.
Re:Why would I use this over Dantz Retrospect? (Score:1, Informative)
I didn't even look at the pricing, but shit, $99 per client makes Dantz's prices look reasonable, you got that right.
Re:Why would I use this over Dantz Retrospect? (Score:5, Informative)
Re:Why would I use this over Dantz Retrospect? (Score:4, Interesting)
1) My five computer home network
2) A 25-Mac-and-8-PC development network
3) A network of about 100 computers, mixed Mac and PC
At various times, with various versions. Perhaps you used someone's personal machine which was off 2/3 of the time or whatever, but installed on a server (on a beige G3 web server, a Quadra 700 (in 1998!), and a Mac IIci (in 1994) respectively) it always worked just fine for me. Especially compared to what I'm trying to get to work now, a Computer Associates piece of junk Windows app with a lousy UI which only appears to send email notifications of missed backups when IT wants to.
Maybe you should consider a different career, if you really had that much trouble with Retrospect.
-fred
Re:Why would I use this over Dantz Retrospect? (Score:1, Flamebait)
installed on a server (on a beige G3 web server, a Quadra 700 (in 1998!), and a Mac IIci (in 1994) respectively) it always worked just fine for me.
Golly, it sounds like you're really on the cutting edge there man.
Maybe you should c
Re:Why would I use this over Dantz Retrospect? (Score:5, Informative)
Fred: you might grab a clue. It's really great that you got it working with a Beige G3 in 1998, but the parent poster specifically mentioned Apple's Xserve RAID. Did you know, for instance, that until this very latest version of Retrospect, that it couldn't work with 1TB volumes?
Depending on how you set up your RAID, that would make it incompatible with the Xserve RAID on that issue alone. If you had signed that PO, I guess it'd be you that'd be looking for another career, and for the justifiable offense of talking out your ass.
Re:Why would I use this over Dantz Retrospect? (Score:1, Redundant)
Re:Why would I use this over Dantz Retrospect? (Score:5, Informative)
It may be idiot-simple, but it's horrendously single-threaded, and still doesn't run properly as a daemon.
Don't go bagging people out just because your own personal anecdotes don't support their point of view. OS X Server admins have been clamouring for better solution than Retrospect for years [listsearch.com]
Re:Why would I use this over Dantz Retrospect? (Score:2)
I granparant the disk and then the user dirs and have had no trouble over my 3 Macs and the 8 I admin at work. Hardly anectodal, but again, this might be a client-server issue I'm not aware of -- the stand-alone is rockin'.
Context!!! (Score:5, Funny)
Re:Context!!! (Score:4, Funny)
Re:Context!!! (Score:2, Funny)
Re:Context!!! (Score:1)
When I see BRULE(E), I can only think of dessert.
another slow apple news day... (Score:3, Informative)
Compression (Score:4, Funny)
Just one question... (Score:5, Funny)
Rsync (Score:4, Informative)
Try this out for size.
sudo rsync -v -a --progress --delete ~/
Re:Rsync (Score:5, Informative)
And it doesn't copy resource forks or Finder data so it can mangle copies on Mac OS X pretty easily...
Don't use rsync on Mac OS X unless you don't mind possibly corrupting your files irreversibly. Instead you could either roll your own solution by doing copies with the ditto command, which has an option to preserve resource forks and metadata, or you can get RsyncX [macosxlabs.org], a rsync implementation that does handle these sort of issues correctly. You can learn a little more about copying and backing up files in this MacDevCenter article. [macdevcenter.com]
Backup on Mac OS X (Score:5, Insightful)
Tar and bzip2 come with Mac OS X, it wouldn't be that hard to script automated full and incremental backups. I do not believe that all OS X come with bash, however they at least come with tcsh. Here are a couple of simple examples.
#!/bin/sh
#example of full backup
date > timestamp
tar jcf home-full.tar.bz2
#!/bin/sh
#example of incremental backup
lastbackup=`cat timestamp`
date > timestamp
tar jc --newer $lastbackup -f home-weekly.tar.bz2
Re:Backup on Mac OS X (Score:3, Informative)
Welcome to Darwin!
[Jonathan-Dobbies-Computer:~] jsdobbie% bash
Jonathan-Dobbies-Computer:~ jsdobbie$ ps
PID TT STAT TIME COMMAND
573 std S 0:00.06 -tcsh
581 std S 0:00.00 bash
Jonathan-Dobbies-Computer:~ jsdobbie$
it just isn't the default shell
Jonathan-Dobbies-Computer:~ jsdobbie$ ls
Jonathan-Dobbies-Computer:~ jsdobbie$
Re:Backup on Mac OS X (Score:1)
Re:Backup on Mac OS X (Score:5, Informative)
Apple changed the default to bash in 10.3 (although if you did an upgrade or an archive and install to go from 10.2 > 10.3 it kept tcsh as your shell for continuity's sake).
Re:Backup on Mac OS X (Score:3, Informative)
both Jaguar (Mac OS X 10.2) and Panther (Mac OS X 10.3) come with bash installed; and in Panther, it is the default shell.
for a simple backup script, bash is not essential of course, though if you prefer it's easy to install in 10.1 or earlier. (Upgrading to 10.3 is an even beter idea
Apple also offers its
Re:Backup on Mac OS X (Score:3, Interesting)
Re:Backup on Mac OS X (Score:5, Informative)
Instead you need to use alternate tools included with Mac OS X such as ditto, CpMac, and hdiutil. There are also 3rd party utilities such as the tar replacement hfstar [metaobject.com] (located at the bottom of the page), and the rsync replacement RsyncX. [macosxlabs.org]
Re:Backup on Mac OS X (Score:5, Insightful)
2. tar will not pick up HFS forks. Resource forks are somewhat more rare in Mac OS X, but they're still there and some programs won't work without them. Finder forks are everywhere in Mac OS X, and while they're not critical, Mac users refused to use a backup system I provided when it did not preserve finder forks.
You can convert HFS resource forks into regular directories/files that will be picked up with tar/rsync/cpio/whatever. Resource forks can be accessed with the syntax "file/rsrc" or "file/..namedFork/rsrc". You can then copy the resource fork into a file called "._file" parallel to "file" and it will be preserved. This is how resource forks are handled on UFS, but it works on UFS and HFS.
So you can do "mv file/..namedFork/rsrc ._file" to prepare file for backup by tar. Put it in a script with a "find" command and you can convert an entire filesystem. (Obviously, do your experimentation somewhere where you don't care if you break your file system.)
Aliases are files with zero-length data forks and the alias information in the resource fork. If you preserve resource forks in one of the above manners, you preserve aliases. Otherwise, you just get regular empty files. I don't know how relevant this is for a backup/archival system as aliases usually break when you move them between systems due to differing volume IDs.
Unfortunately, it's not possible to access the finder fork (creator, type) from the command line using standard utilities. If you want something that also preserves finder forks, it's possible to create, mount and manipulate HFS disk images (.dmg) from the command line using utilities supplied with Mac OS X. The commands you use are hdid, hdiutil and ditto. This is a PITA, but I just found someone who automated it: http://www.kernelthread.com/mac/apme/archive/ [kernelthread.com]
Unfortunately, you can't access dmgs using standard utilities on other platforms, so this method is of limited usefulness. One of the main points of using tar (for me at least) is cross-platform compatibility: I need to access these files on non-Mac OS X systems (like a Solaris box or my NetBSD/SPARC machine, platforms that commercial vendors are unlikely to port to) but I would also prefer to have the metadata preserved when moving between Mac OS X systems. Other reasons to use tar are that (1) tar archives will remain accessible virtually forever due to their ubiquity (whereas an esoteric backup program probably won't have a version for OSes ten years in the future) and (2) tar comes standard with MacOS X, so your backup system will always work (whereas you may have to wait for your backup vendor to release a new version of their program for 10.4, 10.5, etc., assuming the company exists at that time, but if 10.4 introduces some incompatibility in a script I wrote, I can fix that myself in minutes), and the final reason for using standard command-line utilities is (3) flexibility: you can do anything from any kind of incremental schedule to simulating filesystem snapshots [mikerubel.org], selectively choosing which files to back up, how often and where and automating the entire process so it's completely transparent to your users.
Back in the days of 10.0, I had a long list of problems with Mac OS X that kept me from using it as a serious Unix system. Some of these were relatively minor and esoteric problems that I doubt many others encountered. Amazingly, each one of these except one has been fixed by 10.3. The only remaining issue I have with Mac OS X is that I can't access finder forks using POSIX APIs. If someone could rectify this, that would be really nice :)
Re:Backup on Mac OS X (Score:3, Informative)
Nice if you don't have resource data. (Score:3, Informative)
Don't get me wrong, Tar is dandy- but not for resource-fork sensitive files and applications. Which is why I still do incremental DVD-R burns and have piles o
looking for good mac backup software (Score:5, Interesting)
Retrospect Express works, and that's what I currently use, but it suffers from typical closed-source problems. They ported it to Mac OS X but didn't improve the interface which is still a little awkward. The whole architecture of the program is still geared around OS9 single-user. And it doesn't correctly archive Unicode filenames (I had a bunch on my hard drive and finally gave up and renamed them all english). It also only supports FTP for remote backups, not SFTP/SSH or rsync. Basically it seems "stuck" in its current feature set.
BRU?? I tried installing that on my Linux machine a long time ago, it didn't come in any package and it littered the hard drive with "hidden license files" which had backspaces in the names to hide themselves. I don't know what it does on the Mac, but no thanks.
I have a big RAID server where I back up all my Unix machines with rsync. What I really want is to back up my Mac the same way. But I'm not aware of any rsync that will correctly copy resource forks to a filesystem that doesn't use them natively.
There is a Mac OS X rsync, but it only copies resource forks to other Macs, as far as I know. Not to a non-HFS filesystem.
What I really really would love is an rsync that copies the resource forks to hidden files the same way the Mac copies them to non-HFS partitions already. So I could mount the backup directory via NFS and all the resource forks would be recognized.
I have considered the option of mounting the backup dir via NFS, and using resource-fork-aware rsync locally to the NFS directory, but would rather do it over the network.
Are there any rsync ports that do this??
Re:looking for good mac backup software (Score:2)
-fred
RSyncX for resource forks (Score:5, Informative)
RSyncX [macosxlabs.org] will copy resource forks, but only to another OS X system running RSyncX with a HFS(+) filesystem.
Re:looking for good mac backup software (Score:3, Insightful)
Carbon Copy Cloner (Score:5, Informative)
Forgot to mention, CCC is $5 shareware (Score:3, Informative)
Re:Carbon Copy Cloner (Score:2)
Probably op error on my part.
Re:Carbon Copy Cloner (Score:1)
Re:Carbon Copy Cloner (Score:2)
use psync (Score:5, Informative)
not a shill, just a happy camper.
http://www.dan.co.jp/cases/macosx/psync.html
Some other useful standard tools (Score:5, Informative)
Read the man pages for more info. Both these are standard in Mac OS X (Panther at least, not sure about older releases) and handle resource forks properly.
asr is actually the command line backend that the Software Restore Disk that shipped with your computer uses.
BRU is a good idea for multi-Unix sites (Score:2, Interesting)
Now, what's with all the Retrospect bashing? It works great for us and has been getting better every quarter or so. It's certainly a lot easier to use than most Unixy backup/recovery utilities, even under Linux and Solaris, which we use it with.
Amanda + HFStar (Score:4, Informative)
If you've already got amanda set up for other machines, it's not too much work to add a Mac OS X box to your amanda setup.
If you only have one machine which you want to back up, then amanda is overkill.
File Synchronizer (Score:2)