<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0"
    xmlns:dc="http://purl.org/dc/elements/1.1/"
     xmlns:admin="http://webns.net/mvcb/"
     xmlns:content="http://purl.org/rss/1.0/modules/content/"
     xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
	<channel>
	  <title>Ask MetaFilter questions tagged with osx and backup</title>
      <link>http://ask.metafilter.com/tags/osx+backup</link>
      <description>Questions tagged with 'osx' and 'backup' at Ask MetaFilter.</description>
	  <pubDate>Fri, 04 Dec 2009 10:19:16 -0800</pubDate> <lastBuildDate>Fri, 04 Dec 2009 10:19:16 -0800</lastBuildDate>

      <language>en-us</language>
	  <docs>http://blogs.law.harvard.edu/tech/rss</docs>
	  <ttl>60</ttl>	  
	<item>
	<title>Help me recover a deleted MySQL database on osx</title>
	<link>http://ask.metafilter.com/139797/Help%2Dme%2Drecover%2Da%2Ddeleted%2DMySQL%2Ddatabase%2Don%2Dosx</link>	
	<description>Where does MySQL store actual data in Snow Leopard? How would I retrieve a deleted database from a Time Machine backup? MySQL was crashing repeatedly on my Snow Leopard. On the advice of an Apple genius, I nuked the existing install and all its associated directories. I didn&apos;t worry much because I do database stuff on my work computer and only keep copies on my laptop. &lt;br&gt;
&lt;br&gt;
Turns out that there was one particular database [now nuked] that I spent a whole week cleaning up on my laptop. The desktop only has a really old version of this particular database.&lt;br&gt;
&lt;br&gt;
I have regular time machine backups. How do I pluck this database out and restore it?&lt;br&gt;
I cannot for the life of me figure out how to get to the data without going through mysql. Someone suggested looking in  /usr/local/mysql/data&lt;br&gt;
&lt;br&gt;
I can get to the mysql directory but have no permission to enter the data directory. I could recreate much of this work but it will take forever and I&apos;d rather not. Can someone help?</description>
	<guid isPermaLink="false">tag:ask.metafilter.com,2009:site.139797</guid>
	<pubDate>Fri, 04 Dec 2009 10:19:16 -0800</pubDate>
	<category>backup</category>
	<category>database</category>
	<category>deleted</category>
	<category>mac</category>
	<category>mysql</category>
	<category>osx</category>
	<category>retrieve</category>
	<category>snowleopard</category>
	<category>timemachine</category>
	<dc:creator>special-k</dc:creator>
	</item>
	<item>
	<title>Backing up a messed up older Mac?</title>
	<link>http://ask.metafilter.com/136656/Backing%2Dup%2Da%2Dmessed%2Dup%2Dolder%2DMac</link>	
	<description>Best method/software for efficient, non-annoying backup for a slightly older Mac (G4 running 10.3.9)? Trying to back up a ton of Pro Tools sessions and other audio junk from an older G4 running OS X 10.3.9 onto a newish LaCie external drive. From several years of misuse, mismanagement and abuse, there are a lot of duplicate and corrupt files. Simply dragging and dropping the folders in Finder is getting annoying, because every time it encounters a corrupt or wonky file I have to start over and be super-diligent to ensure every single possible file is copied. Trying to get about 200G copied this way is becoming annoying and wasting lots of time. &lt;br&gt;
&lt;br&gt;
Is there a better method or application I could use (ideally, free or cheap) to let this run for hours and have it automatically skip, check or even fix any messed up files -- and just have it done?</description>
	<guid isPermaLink="false">tag:ask.metafilter.com,2009:site.136656</guid>
	<pubDate>Wed, 28 Oct 2009 08:59:51 -0800</pubDate>
	<category>backup</category>
	<category>efficient</category>
	<category>lacie</category>
	<category>mac</category>
	<category>osx</category>
	<category>pro</category>
	<category>tools</category>
	<dc:creator>southvie</dc:creator>
	</item>
	<item>
	<title>Rsync to Merge Disk Images?</title>
	<link>http://ask.metafilter.com/131539/Rsync%2Dto%2DMerge%2DDisk%2DImages</link>	
	<description>Should I use rsync (instead of rsnapshot) to pare down Mac disk image backups? I&apos;ve used SuperDuper to make several disk image backups of a boot drive.&lt;br&gt;
&lt;br&gt;
Let&apos;s say they&apos;re called backup-090107.dmg, backup-090114.dmg, backup-090121.dmg, and so on.&lt;br&gt;
&lt;br&gt;
I want to merge all these into a single backup directory, RETAINING incremental backups. So if file-a.txt changed on Jan 16 2009 (between backup-090114 and backup-0090121), I&apos;d end up with a copy of how it was on 090114 and also a copy of how it was on 090121.&lt;br&gt;
&lt;br&gt;
I tried rdiff-backup but gave up on it due to insane slowness. (It takes SuperDuper 5-6 hours to back up 60-70 GB over USB2; rdiff-backup was taking about 16 hours to back up just the 7GB applications directory. Yikes.)&lt;br&gt;
&lt;br&gt;
I&apos;ve started looking at rsnapshot, but I don&apos;t think that&apos;s what I want for this initial merge ... although it might be what I want for any subsequent backups, once I&apos;ve got the disk images merged.&lt;br&gt;
&lt;br&gt;
So:&lt;br&gt;
&lt;br&gt;
* am I correct in thinking that rsync is best for merging these dmgs?&lt;br&gt;
&lt;br&gt;
* would the following commands do what I want to do - so I end up with a single copy of any file that hasn&apos;t changed, plus incremental backups of each file that HAS changed?&lt;br&gt;
&lt;br&gt;
rsync -a --delete --numeric-ids --relative --delete-excluded --xattrs --exclude=/this/ --exclude=/that/ \&lt;br&gt;
    /Volumes/backup-090107 /Volumes/BackupDrive/big-old-merge-directory/backup-090107/&lt;br&gt;
&lt;br&gt;
rsync -a --delete --numeric-ids --relative --delete-excluded --xattrs --exclude=/this/ --exclude=/that/ \&lt;br&gt;
    /Volumes/backup-090114  /Volumes/BackupDrive/big-old-merge-directory/backup-090114/&lt;br&gt;
&lt;br&gt;
&lt;br&gt;
* should I switch to rsnapshot after merging, or continue using rsync? If I continue with rsync, would I use something like&lt;br&gt;
&lt;br&gt;
rsync -a --delete --numeric-ids --relative --delete-excluded --xattrs --exclude=/this/ --exclude=/that/ \&lt;br&gt;
    /MyHardDrive /Volumes/BackupDrive/big-old-merge-directory/backup-todaysdate/&lt;br&gt;
&lt;br&gt;
Extra bonus points for lists of directories you like to exclude, or pointers to pages that list appropriate OS X (10.4) directories to exclude. (I DO want to back up even big directories; I don&apos;t need to back up the unnecessary or dangerous - for example, I know most folks exclude .Spotlight-V100.)&lt;br&gt;
&lt;br&gt;
Once I&apos;ve merged the backups (and verified them, of course), I&apos;ll be deleting the disk images to free up space for future backups. (And I&apos;m doing full, bootable backups to a different drive; this is just my attempt to get good incremental backups.)&lt;br&gt;
&lt;br&gt;
Many, many thanks!</description>
	<guid isPermaLink="false">tag:ask.metafilter.com,2009:site.131539</guid>
	<pubDate>Sun, 30 Aug 2009 23:18:10 -0800</pubDate>
	<category>backup</category>
	<category>osx</category>
	<category>resolved</category>
	<category>rsnapshot</category>
	<category>rsync</category>
	<dc:creator>kristi</dc:creator>
	</item>
	<item>
	<title>How do I stop my external hard drives from changing disk IDs when I reboot on OS X?</title>
	<link>http://ask.metafilter.com/130212/How%2Ddo%2DI%2Dstop%2Dmy%2Dexternal%2Dhard%2Ddrives%2Dfrom%2Dchanging%2Ddisk%2DIDs%2Dwhen%2DI%2Dreboot%2Don%2DOS%2DX</link>	
	<description>How do I stop my external hard drives from changing disk IDs when I reboot on OS X? I have a simple rsync script that I just made for my OS X machine to backup data on my two main drives to two drives in an external enclosure. I wanted the script to mount and unmount the drives so that they wouldn&apos;t clutter my desktop and to keep them &quot;hidden&quot;. &lt;br&gt;
&lt;br&gt;
The problem is that the disk ID under /dev changes everytime I reboot. Sometimes the drive mounted at /Volumes/backup1 will be at /dev/disk3s3 and sometimes it will be at /dev/disk4s3. Other times it will be at /dev/disk2s3. &lt;br&gt;
&lt;br&gt;
Is there anyway to keep the disk ID static, or to just mount by the directory name? I&apos;m running 10.5.8, with the latest updates. My script uses the `diskutil`command to mount and unmount the drives. Oh, and AFAIK, Time Machine only works with one drive as a backup.</description>
	<guid isPermaLink="false">tag:ask.metafilter.com,2009:site.130212</guid>
	<pubDate>Fri, 14 Aug 2009 20:08:06 -0800</pubDate>
	<category>backup</category>
	<category>mac</category>
	<category>osx</category>
	<category>resolved</category>
	<category>rsync</category>
	<dc:creator>triolus</dc:creator>
	</item>
	<item>
	<title>How secure is Time Machine backups?</title>
	<link>http://ask.metafilter.com/118132/How%2Dsecure%2Dis%2DTime%2DMachine%2Dbackups</link>	
	<description>How secure is Time Machine backups?
I&apos;m worried about security of the data stored by Time Machine. I&apos;m worried about security of the data stored by Time Machine.&lt;br&gt;
&lt;br&gt;
I have a WD My Passport external HD that I use with Time Machine for my complete backups.&lt;br&gt;
But I&apos;m worried if I lost the external HD or someone stole it.&lt;br&gt;
Is the data accessible? Or it&apos;s encrypted in some way?&lt;br&gt;
&lt;br&gt;
Is there a way to automatically encrypt it?&lt;br&gt;
&lt;br&gt;
Because I travel a lot and I think it probably could be a big problem if it&apos;s accessible to anyone that connect it to a mac (because it&apos;s formatted to mac).&lt;br&gt;
&lt;br&gt;
Thanks.</description>
	<guid isPermaLink="false">tag:ask.metafilter.com,2009:site.118132</guid>
	<pubDate>Mon, 30 Mar 2009 10:07:57 -0800</pubDate>
	<category>backup</category>
	<category>mac</category>
	<category>osx</category>
	<category>security</category>
	<category>software</category>
	<category>timemachine</category>
	<dc:creator>Leech</dc:creator>
	</item>
	<item>
	<title>Baby got too much back</title>
	<link>http://ask.metafilter.com/115541/Baby%2Dgot%2Dtoo%2Dmuch%2Dback</link>	
	<description>How can I consolidate all my pictures, music, pdf files, etc. from multiple drives? I have about 10 external drives containing photos and so forth. Different drives contain some duplicates, but the individual drives do not. Say I want to copy the files from DRIVE1, DRIVE2, etc. to UBERDRIVE, which has room for everything. My first thought was &lt;br&gt;
&lt;br&gt;
&lt;strong&gt;cd /Volumes/DRIVE1; find . -name &quot;*.jpg&quot; -exec cp {} /Volumes/UBERDRIVE/Pictures/ \;&lt;/strong&gt;&lt;br&gt;
&lt;br&gt;
and then repeating the process for DRIVE2 and so on.&lt;br&gt;
&lt;br&gt;
I tried this for DRIVE1, and it seems to be really slow. (It&apos;s taken 10 hours thus far to find 100,000 jpgs on a new MacBook Pro.) Also, I think my current procedure will overwrite files with the same name, even if they&apos;re different files.&lt;br&gt;
&lt;br&gt;
Does anyone have a better approach? Thanks!&lt;br&gt;
&lt;br&gt;
I&apos;m running Leopard, but I also have machines running Vista, XP, and Fedora 10.</description>
	<guid isPermaLink="false">tag:ask.metafilter.com,2009:site.115541</guid>
	<pubDate>Mon, 02 Mar 2009 08:53:41 -0800</pubDate>
	<category>backup</category>
	<category>leopard</category>
	<category>mac</category>
	<category>macintosh</category>
	<category>osx</category>
	<category>toodamnmanyfiles</category>
	<dc:creator>lukemeister</dc:creator>
	</item>
	<item>
	<title>Back my Mac up online</title>
	<link>http://ask.metafilter.com/109996/Back%2Dmy%2DMac%2Dup%2Donline</link>	
	<description>What&apos;s the best software for automated online backups for OSX? I have a Dreamhost account with unlimited storage and transfer, and I&apos;d like to use that as a place to remotely backup the data on my Macbook Pro (mostly photos from iPhoto). MobileMe is a ripoff.&lt;br&gt;
&lt;br&gt;
You&apos;d think there&apos;d be a nice piece of software that runs in the background and allows me to set a few directories to be synced, and any additions to those folders are automatically reflected online. True? Something that uses SSH or FTP, maybe?&lt;br&gt;
&lt;br&gt;
I know about rsync but I&apos;m stupid and I want a GUI.&lt;br&gt;
&lt;br&gt;
What are my options?</description>
	<guid isPermaLink="false">tag:ask.metafilter.com,2008:site.109996</guid>
	<pubDate>Thu, 25 Dec 2008 10:46:37 -0800</pubDate>
	<category>backup</category>
	<category>dreamhost</category>
	<category>iphoto</category>
	<category>mac</category>
	<category>macosx</category>
	<category>online</category>
	<category>osx</category>
	<category>photos</category>
	<dc:creator>c:\awesome</dc:creator>
	</item>
	<item>
	<title>How do I protect my backup drive?</title>
	<link>http://ask.metafilter.com/105618/How%2Ddo%2DI%2Dprotect%2Dmy%2Dbackup%2Ddrive</link>	
	<description>How do I secure my backup hard drive that I copy my computer&apos;s content onto? I use SuperDuper on my Mac and copy my whole bootable disk image to a backup drive connected to my computer.  Now, my computer is pretty well protected, I have passwords to get into any account and on my screensaver.  When logged in as one user, you can&apos;t access files in another user&apos;s folder. &lt;br&gt;
However, it seems like the weak spot in my security is the hard drive that I back up to.  When I access the drive and look at the files, I&apos;m able to get into every folder and see everything and never have to access a password.  Someone could take my hard drive and have all my information.  &lt;br&gt;
So how to I protect my backup hard drive?  Is there a way to password protect its contents, encrypt it somehow, etc?  Is it something I would do in SuperDuper or do I need another program?  Would turning on Mac&apos;s built in FileVault encryption on my computer protect me (I&apos;ve never used it so I&apos;m not sure how it works)?</description>
	<guid isPermaLink="false">tag:ask.metafilter.com,2008:site.105618</guid>
	<pubDate>Thu, 30 Oct 2008 13:47:12 -0800</pubDate>
	<category>backup</category>
	<category>encryption</category>
	<category>mac</category>
	<category>osx</category>
	<category>security</category>
	<dc:creator>truth1ness</dc:creator>
	</item>
	<item>
	<title>Mac server backup software</title>
	<link>http://ask.metafilter.com/102526/Mac%2Dserver%2Dbackup%2Dsoftware</link>	
	<description>Getting some Mac servers and looking for suggestions on backup software. I&apos;m completely new to the Mac scene, but we&apos;re converting from a Windows to Mac environment which will eventually host 700 or so clients and am getting some Mac OSX servers we&apos;ll be using as file &amp;amp; print server, iCal, wiki, etc, initially, but host more applications as this project grows.&lt;br&gt;
&lt;br&gt;
The problem is that from what I&apos;ve gathered, Retrospect is one of the few cheaper enterprise Mac solutions (as in under $2000 per edu license), but apparently hasn&apos;t been updated in quite some time and is mainly used for just data backup, not SQL/db/user profiles/system state/etc applications like Backup Exec or True Image.&lt;br&gt;
&lt;br&gt;
So, any suggestions for backup software on Mac servers?&lt;br&gt;
&lt;br&gt;
(I&apos;ve also read previous mac backup questions, and they were all more along the line of personal backup data or SOHOs, whereas I&apos;m looking more for disaster recovery capability to restore everything in one click, which again, sounds like Retrospect isn&apos;t ideal for).</description>
	<guid isPermaLink="false">tag:ask.metafilter.com,2008:site.102526</guid>
	<pubDate>Wed, 24 Sep 2008 07:36:12 -0800</pubDate>
	<category>backup</category>
	<category>mac</category>
	<category>osx</category>
	<category>server</category>
	<category>software</category>
	<dc:creator>jmd82</dc:creator>
	</item>
	<item>
	<title>MacFilter: Upgraded my hard drive using SuperDuper to clone, but Time Machine backed up the entire drive after the swap. How to prevent this?</title>
	<link>http://ask.metafilter.com/100511/MacFilter%2DUpgraded%2Dmy%2Dhard%2Ddrive%2Dusing%2DSuperDuper%2Dto%2Dclone%2Dbut%2DTime%2DMachine%2Dbacked%2Dup%2Dthe%2Dentire%2Ddrive%2Dafter%2Dthe%2Dswap%2DHow%2Dto%2Dprevent%2Dthis</link>	
	<description>MacFilter: Upgraded my hard drive using SuperDuper to clone, but Time Machine backed up the entire drive after the swap. How to prevent this? I used SuperDuper to clone my internal laptop hard disk onto a larger hard disk in an external enclosure. The cloning process went fine, and I swapped the internal drive with the cloned one. Works great.&lt;br&gt;
&lt;br&gt;
Unfortunately, next time I ran Time Machine, it backed up the entire contents of the freshly cloned drive onto the TM drive, thus eating up ~80GB of my TM drive. Now I need to replace my internal drive again (the replacement was too power hungry) but don&apos;t want TM to eat up another 80 GB.&lt;br&gt;
&lt;br&gt;
Any way to prevent Time Machine from trying to back up the cloned drive?</description>
	<guid isPermaLink="false">tag:ask.metafilter.com,2008:site.100511</guid>
	<pubDate>Sat, 30 Aug 2008 16:47:38 -0800</pubDate>
	<category>backup</category>
	<category>disk</category>
	<category>hard</category>
	<category>mac</category>
	<category>osx</category>
	<dc:creator>kenliu</dc:creator>
	</item>
	<item>
	<title>OS X Time Machine backup with USB disc as one source</title>
	<link>http://ask.metafilter.com/98347/OS%2DX%2DTime%2DMachine%2Dbackup%2Dwith%2DUSB%2Ddisc%2Das%2Done%2Dsource</link>	
	<description>OS X Backup Filter. I use a mac mini with it&apos;s limited had disc space, so also use an external USB drive to store big stuff like my iTunes Library, Lightroom Catalog, and Downloads. I need automatic backup help. I also have a second USB disc attached for backups, but since Time Machine can&apos;t use a USB disc as a source, I can only use Time Machine as a method of backing up what&apos;s on my internal hard disc on the mini, and I need to do all backups of my external disc manually. As you can imagine, since it&apos;s manual I very rarely do it but at the same time the data on the external drive is much more sensitive. So I need a way to automatically backup everything from both internal and external discs, to another external disc. Any ideas ?&lt;br&gt;
&lt;br&gt;
Requirements:&lt;br&gt;
Needs to be automated/provide scheduled backup capability&lt;br&gt;
Can backup both internal and external USB/FireWire disc sources to external USB/FireWire destination.&lt;br&gt;
A Time machine hack/plugin etc would be preferable&lt;br&gt;
Free would be preferable, though I would be willing to pay for a reliable easy to use app</description>
	<guid isPermaLink="false">tag:ask.metafilter.com,2008:site.98347</guid>
	<pubDate>Tue, 05 Aug 2008 03:45:40 -0800</pubDate>
	<category>backup</category>
	<category>mac</category>
	<category>machine</category>
	<category>mini</category>
	<category>osx</category>
	<category>time</category>
	<dc:creator>superfurry</dc:creator>
	</item>
	<item>
	<title>Help Me Secure My External Drive</title>
	<link>http://ask.metafilter.com/83866/Help%2DMe%2DSecure%2DMy%2DExternal%2DDrive</link>	
	<description>Is there a way to make my external hard drive only accessible to me without too seriously decreasing the ease of use when I am using it? This might be a basic question, but I&apos;m not too brilliant with this sort of thing.&lt;br&gt;
&lt;br&gt;
I have an external firewire drive connected to a MacBook Pro running OS X Leopard.  I&apos;ve been using Time Machine to backup the drive regularly and I also store other random stuff on the external.  I like this functionality, but I don&apos;t like the fact that all of my data will show up to anyone who plugs in my drive can see all my data.  What are my options for making the data only available to me while still being able to use the drive essentially as I have been before.</description>
	<guid isPermaLink="false">tag:ask.metafilter.com,2008:site.83866</guid>
	<pubDate>Sun, 17 Feb 2008 12:40:27 -0800</pubDate>
	<category>backup</category>
	<category>Mac</category>
	<category>OSX</category>
	<category>secure</category>
	<dc:creator>ecab</dc:creator>
	</item>
	<item>
	<title>Help me configure the ultimate Mac OSX backup solution.</title>
	<link>http://ask.metafilter.com/79204/Help%2Dme%2Dconfigure%2Dthe%2Dultimate%2DMac%2DOSX%2Dbackup%2Dsolution</link>	
	<description>Help me configure the ultimate Mac OSX backup solution! I just received two very nice external firewire hard drives for Christmas.  My plan is to place my music collection on one drive and use the other drive to have a perfect copy of all my music in case the original fails.  As I add to my collection every couple of days or so, I&apos;d really like to automate this to create regular backups.  My plan was to have both drives connected and powered on, with the backup drive unmounted.  The OS would mount it when needed to do the backup and then unmount it again when it was finished.  I thought I could accomplish this with SuperDuper! and its scheduling function, and for the most part it works.  The only problem is when my wife logs in the system mounts the backup drive.  Then spotlight wants to index it, and if I log in it seems to get stuck in this weird phase of mounting and unmounting.  &lt;br&gt;
&lt;br&gt;
If anyone could tell me step-by-step how to make this work and have the drive ONLY be mounted when it is needed to perform a backup, I would greatly appreciate it.  If I can get this to work I&apos;d like to do the same thing with my system drive and a 3rd firewire drive that I have.</description>
	<guid isPermaLink="false">tag:ask.metafilter.com,2007:site.79204</guid>
	<pubDate>Thu, 20 Dec 2007 19:04:57 -0800</pubDate>
	<category>backup</category>
	<category>firewire</category>
	<category>mac</category>
	<category>mount</category>
	<category>osx</category>
	<category>superduper!</category>
	<dc:creator>drgonzo2k2</dc:creator>
	</item>
	<item>
	<title>best backup drive option for Leopard?</title>
	<link>http://ask.metafilter.com/75541/best%2Dbackup%2Ddrive%2Doption%2Dfor%2DLeopard</link>	
	<description>Best backup drive for Leopard, and options for multiple computers? I&apos;ve ordered Leopard, I&apos;d like to back up both my Macbook and my iMac G5 before I install, and I think I might actually keep my computers backed up once I have Time Machine. What&apos;s the best value on an external drive that can handle all these things? Also, could I have one partitioned drive that I shuttle between computers and would that be a somewhat bad or terrible idea?</description>
	<guid isPermaLink="false">tag:ask.metafilter.com,2007:site.75541</guid>
	<pubDate>Mon, 05 Nov 2007 20:10:48 -0800</pubDate>
	<category>backup</category>
	<category>external</category>
	<category>leopard</category>
	<category>mac</category>
	<category>osx</category>
	<dc:creator>lackutrol</dc:creator>
	</item>
	<item>
	<title>I need to backup a website to DVD.</title>
	<link>http://ask.metafilter.com/74700/I%2Dneed%2Dto%2Dbackup%2Da%2Dwebsite%2Dto%2DDVD</link>	
	<description>What&apos;s the best software and method for completely backing up a website to DVD? I need to archive a website completely to DVD. My dad&apos;s cousin passed away and his website is still online so his widow wants a complete backup of his writings and comments.&lt;br&gt;
&lt;br&gt;
I have tested software for both Windows and OS X including &lt;a href=&quot;http://www.surfoffline.com/&quot;&gt;SurfOffline&lt;/a&gt; and &lt;a href=&quot;http://www.apple.com/downloads/macosx/internet_utilities/bluecrab.html&quot;&gt;Blue Crab&lt;/a&gt; but there are usually invalid links, missing images or no @import css files. Once I find the right software, I want to burn the backed up website to DVD and have a cross platform autorun for the index file (so that you don&apos;t have to open up Finder or Explorer to find it).&lt;br&gt;
&lt;br&gt;
What solutions are there for offline website backups and cross platform dvd backups?</description>
	<guid isPermaLink="false">tag:ask.metafilter.com,2007:site.74700</guid>
	<pubDate>Thu, 25 Oct 2007 19:06:46 -0800</pubDate>
	<category>archive</category>
	<category>backup</category>
	<category>dvd</category>
	<category>offline</category>
	<category>osx</category>
	<category>website</category>
	<category>windows</category>
	<dc:creator>asuh</dc:creator>
	</item>
	<item>
	<title>I&apos;m having a recurring problem backing up my mac.</title>
	<link>http://ask.metafilter.com/70131/Im%2Dhaving%2Da%2Drecurring%2Dproblem%2Dbacking%2Dup%2Dmy%2Dmac</link>	
	<description>I&apos;m having a recurring problem backing up my mac.  One specific file seems to be causing the problem, but I can&apos;t find it anywhere on my mac.  Help? I use SuperDuper to back up regularly to an external hard drive.  I often get an &quot;input/output error&quot; from a specific file on my mac (diff each time), which I easily fix by just deleting the offending file from my mac, assuming the file is corrupted). This usually works fine for me.&lt;br&gt;
&lt;br&gt;
But now I&apos;m getting errors on this file: &lt;br&gt;
&lt;br&gt;
/usr/lib/./libncurses.5.4.dylib&lt;br&gt;
&lt;br&gt;
Which I can&apos;t find anywhere on my mac OR on my external HD.  &lt;br&gt;
&lt;br&gt;
I recently did an &quot;archive and reinstall&quot; of OSX 10.4.8, and then updated to 10.4.10.  I tried erasing the external HD and doing a fresh backup, but today I got this error: &lt;br&gt;
&lt;br&gt;
| 07:26:36 AM | Info |       /bin&lt;br&gt;
| 07:26:36 AM | Info |       /usr&lt;br&gt;
| 07:27:46 AM | Info |       WARNING:  Caught I/O exception(5): Input/output error&lt;br&gt;
| 07:27:46 AM | Info |       WARNING:  Source: /usr/lib/libncurses.5.4.dylib, lstat(): 0&lt;br&gt;
| 07:27:46 AM | Info |       WARNING:  Target: /Volumes/Portable Hard Drive/usr/lib/libncurses.5.4.dylib, lstat(): 0&lt;br&gt;
| 07:27:46 AM | Info |       Attempting to copy file using copyfile().&lt;br&gt;
| 07:28:27 AM | Info |       Attempting to copy file using ditto.&lt;br&gt;
| 07:29:09 AM | Error | ditto: /usr/lib/./libncurses.5.4.dylib: Input/output error&lt;br&gt;
| 07:29:09 AM | Error | SDCopy: Failed to recover from copy error for file /usr/lib/libncurses.5.4.dylib: Operation not supported&lt;br&gt;
| 07:29:09 AM | Error | ****FAILED****: result=256 errno=22 (Unknown error: 0)&lt;br&gt;
&lt;br&gt;
Help?  What is this file, and how can I remove it from my mac?</description>
	<guid isPermaLink="false">tag:ask.metafilter.com,2007:site.70131</guid>
	<pubDate>Sun, 26 Aug 2007 05:38:54 -0800</pubDate>
	<category>backup</category>
	<category>mac</category>
	<category>osx</category>
	<dc:creator>kdern</dc:creator>
	</item>
	<item>
	<title>Backing up Mac niternal drive containing BootCamp partition</title>
	<link>http://ask.metafilter.com/67431/Backing%2Dup%2DMac%2Dniternal%2Ddrive%2Dcontaining%2DBootCamp%2Dpartition</link>	
	<description>Best way to backup an internal drive of a MacBook, containing a Boot Camp partition, to an external drive? Internal drive is 160Gb. External is 250Gb disk with Firewire interface. Boot Camp partition was formatted as a 32GB FAT32 running XP. I was planning to use SuperDuper to duplicate the OS X partition into the external drive. Then boot from the external drive, and use Disk Utility to save the entire FAT32 partition onto a  .dmg file on the external drive. Will this work? Is there a better way?</description>
	<guid isPermaLink="false">tag:ask.metafilter.com,2007:site.67431</guid>
	<pubDate>Fri, 20 Jul 2007 09:32:25 -0800</pubDate>
	<category>backup</category>
	<category>BootCamp</category>
	<category>OSX</category>
	<category>superduper</category>
	<dc:creator>jaimev</dc:creator>
	</item>
	<item>
	<title>or maybe that one with the fox, goose, and grain.</title>
	<link>http://ask.metafilter.com/47243/or%2Dmaybe%2Dthat%2Done%2Dwith%2Dthe%2Dfox%2Dgoose%2Dand%2Dgrain</link>	
	<description>Please help me with a Hard Drive &quot;Tower of Hanoi&quot; puzzle. I have to move some stuff around on drives &amp;amp; partitions, and I may be confusing myself &amp;amp; making it seem more complicated.&lt;br&gt;
Somebody set me straight or give me a best practice, please.  Super-smarties can skip the details and go straight to the &quot;&amp;gt;&amp;gt;&amp;gt;&quot; part below, answer it in one step, and show off. :P&lt;br&gt;
&lt;br&gt;
I have a LaCie 160 GB external HD split into two equal-sized ~80GB partitions.&lt;br&gt;
There is a bootable OSX 10.3 clone (used CarbonCopyCloner) of an old system taking up one half (pre-Tiger-transition backup, allows me to rarely run some old OS9 stuff). The other half is overflow file storage - photo albums, document scans,torrented video files, etc. that take up only about a quarter of the space.&lt;br&gt;
&lt;br&gt;
I have it connected to an 80GB OSX 10.4 PPC Mini (via the Mini&apos;s single FireWire 400 jack) that&apos;s my current un-backed-up system.&lt;br&gt;
I would like to repartition the 160 GB external drive as a single partition, bootable clone of my Mini to back up to, incorporating the overflow files as well, with some free space left for more.  I love the idea, and have used it to save myself before when HDs have gone bad, of backing up to a bootable clone.  HD goes bad?  Switch your startup disk to the clone and you&apos;re back up with no other transition worries.  Problem is, I can&apos;t transfer that clone file by file from one HD to another - it has to go as one big piece, no?&lt;br&gt;
&lt;br&gt;
But I&apos;d also like to keep a copy of the 10.3 clone around as well, because.... that&apos;s the kind of person I am. I&apos;ll just buy, say, a SmartDisk 80 GB FW400 external drive and keep it in a drawer unless/until I need it.  I don&apos;t need to buy a FireWire hub just for this project (or do I?), or to keep the several external drives connected at all times.  &lt;br&gt;
&lt;br&gt;
Question is, how do I copy the 10.3 Panther clone from one external drive to another - especially since my Mini only has one FireWire 400 port?  &lt;br&gt;
&lt;br&gt;
Let&apos;s say that I can just back up the overflow files on the LaCie to DVD until the larger moves are done and get one 80GB blank partition on the Lacie HD.  &lt;br&gt;
&lt;br&gt;
&amp;gt;&amp;gt;&amp;gt;Which gives me a starting position of:&lt;br&gt;
&lt;br&gt;
1)LaCie&lt;br&gt;
80GB Panther clone&lt;br&gt;
80GB Free (blank)&lt;br&gt;
&lt;br&gt;
2)Mini&lt;br&gt;
80GB Tiger system&lt;br&gt;
&lt;br&gt;
3)SmartDisk&lt;br&gt;
80GB Free (blank)&lt;br&gt;
&lt;br&gt;
HELP ME PLEASE get to my desired end point of:&lt;br&gt;
&lt;br&gt;
1)LaCie&lt;br&gt;
160GB Tiger Clone (+overflow files+free space for more)&lt;br&gt;
&lt;br&gt;
2)Mini &lt;br&gt;
80 GB Tiger System&lt;br&gt;
&lt;br&gt;
3)SmartDisk&lt;br&gt;
80 GB Panther clone&amp;lt;&amp;lt;&amp;lt;&lt;br&gt;
&lt;br&gt;
The Lacie is a triple-interface model, so could I connect the Lacie to the Mini via USB, and then connect the SmartDisk to the Lacie via FireWire, and then instruct it (how?) to move the Panther clone from one drive to another?&lt;br&gt;
&lt;br&gt;
Or am I going to have to move my Tiger OS from the Mini to the open partition on the LaCie, then move the Panther clone to the Mini, in order to move it again to the SmartDisk?  Then clear the Panther off the Mini, put Tiger back on, repartition the LaCie, and proceed from there?&lt;br&gt;
&lt;br&gt;
I&apos;m sure I&apos;m missing an/the easy step here.&lt;br&gt;
Please hope me.</description>
	<guid isPermaLink="false">tag:ask.metafilter.com,2006:site.47243</guid>
	<pubDate>Mon, 25 Sep 2006 11:36:17 -0800</pubDate>
	<category>backup</category>
	<category>clone</category>
	<category>external</category>
	<category>firewire</category>
	<category>HD</category>
	<category>OSX</category>
	<dc:creator>bartleby</dc:creator>
	</item>
	<item>
	<title>Mac Backup sucks, but does it work?</title>
	<link>http://ask.metafilter.com/38037/Mac%2DBackup%2Dsucks%2Dbut%2Ddoes%2Dit%2Dwork</link>	
	<description>Let it be known, first, that I devoured past posts on &lt;a href=&quot;http://ask.metafilter.com/tags/mac+Backup&quot;&gt;Macs and backup tools&lt;/a&gt;, and see a lot of things I want to try.  However, I used Apple&apos;s own &lt;a href=&quot;http://www.apple.com/dotmac/backup.html&quot;&gt;Mac Backup 3&lt;/a&gt; application (a .Mac tool) prior to learning here that it sucks. So, for those who have also similarly (if inexplicably) used Mac Backup, I have a question.  How do I know if it worked? I started Mac Backup. I created a custom plan so I could do a one-time full backup of a folder on my Mac filled with 10,000+ photos to DVDs.  I said &quot;Make backup now.&quot;  It did its little dance, and said it would take 37 or something CDs, or 4 DVDs.  Then, I followed the instructions as it burned the first one, told me to label it, burned the second one, told me to label it, and so on.&lt;br&gt;
&lt;br&gt;
But after the third DVD, it reported it was done with that disc (as before), but didn&apos;t ask for that fourth disc.  And the history simply showed &quot;backup completed successfully.&quot;  So, did it?  Did it just overestimate that it needed four DVDs?  Or did I somehow skip it or break something?  Immediately after using Backup, my Mac didn&apos;t recognize a blank DVD I inserted until after a few tries.&lt;br&gt;
&lt;br&gt;
I would&apos;ve thought that putting one of the burned DVDs into my Mac would helpfully say, &quot;Disc 1 of 3&quot; or something.  But there&apos;s simply &quot;Disc 1.&quot;  So I can&apos;t tell how many DVDs Backup &lt;i&gt;thinks&lt;/i&gt; the plan includes.&lt;br&gt;
&lt;br&gt;
Any ideas?  Besides, &quot;Don&apos;t use Mac Backup&quot;?  I&apos;ll probably use another utility or go with external Firewire drives, ultimately, but I want to know if these DVDs I made are any good!  Thanks in advance.</description>
	<guid isPermaLink="false">tag:ask.metafilter.com,2006:site.38037</guid>
	<pubDate>Fri, 12 May 2006 00:37:16 -0800</pubDate>
	<category>backup</category>
	<category>mac</category>
	<category>osx</category>
	<dc:creator>pzarquon</dc:creator>
	</item>
	<item>
	<title>How to partition an external hard drive for use with OS X and Windows, and booting OS X too? </title>
	<link>http://ask.metafilter.com/38036/How%2Dto%2Dpartition%2Dan%2Dexternal%2Dhard%2Ddrive%2Dfor%2Duse%2Dwith%2DOS%2DX%2Dand%2DWindows%2Dand%2Dbooting%2DOS%2DX%2Dtoo</link>	
	<description>I need help using my external USB hard drive with Mac OS X, and there&apos;s  more inside. You see, I have this 200GB USB hard drive, currently formatted as a single FAT32 partition. I&apos;d been using it with my Windows XP desktop. Now I have a MacBook Pro and I need help figuring this out. The MacBook is named Olivia and the Windows machine is named Snowball. The FAT32 volume is named Torquemada.&lt;br&gt;
&lt;br&gt;
Is there some partitioning scheme that will let me have Torquemada in &quot;GUID partition table&quot; mode* so I can have a bootable OS X image on 80 GB of it, and at the same time have the other 120 GB be FAT32, and therefore useful for moving files between Olivia and Snowball? Or does the one preclude coexistence with the other?&lt;br&gt;
&lt;br&gt;
If I have my OS X install DVDs, and I have a Torquemada formatted to boot OS X, how do I actually get a bootable OS X on there? Once that&apos;s in place, say I wanted to boot Olivia off Torquemada instead of her internal drive, what key do I hold down to tell her so?&lt;br&gt;
&lt;br&gt;
*whatever &lt;i&gt;that&lt;/i&gt; means.</description>
	<guid isPermaLink="false">tag:ask.metafilter.com,2006:site.38036</guid>
	<pubDate>Fri, 12 May 2006 00:10:35 -0800</pubDate>
	<category>backup</category>
	<category>externaldrive</category>
	<category>harddrive</category>
	<category>interoperability</category>
	<category>macbook</category>
	<category>osx</category>
	<category>partitioning</category>
	<dc:creator>evariste</dc:creator>
	</item>
	<item>
	<title>How to go from &quot;this_&quot; to &quot;this&quot; ?</title>
	<link>http://ask.metafilter.com/34947/How%2Dto%2Dgo%2Dfrom%2Dthis%2Dto%2Dthis</link>	
	<description>Batch unzipping and file renaming on UNIX or OS X? All_ my_ files_ look_ like_ this!_.gz I recently lost all files on one of my domains, but was able to recover everything from my server&apos;s backup.  However, all the files now have an underscore appended to the end of the filename (&lt;em&gt;index.html&lt;/em&gt; is now &lt;em&gt;index.html_&lt;/em&gt;, for example).  All the files and all the folders are like this.  &lt;br&gt;
&lt;br&gt;
And some of them are gzipped, so some files are now &lt;em&gt;filename.cgi_.gz&lt;/em&gt;.&lt;br&gt;
&lt;br&gt;
What&apos;s the quickest, easiest way to unzip everything and remove the _ from the end of the files, including those within nested folders?  Is there a shell command I can use? (or a way to do this using Automator on OS X if I copy everything from my server to my computer?)</description>
	<guid isPermaLink="false">tag:ask.metafilter.com,2006:site.34947</guid>
	<pubDate>Thu, 23 Mar 2006 08:59:45 -0800</pubDate>
	<category>backup</category>
	<category>batch</category>
	<category>file</category>
	<category>gzip</category>
	<category>mac</category>
	<category>osx</category>
	<category>rename</category>
	<category>server</category>
	<category>unix</category>
	<category>unzip</category>
	<category>zip</category>
	<dc:creator>Robot Johnny</dc:creator>
	</item>
	<item>
	<title>Why are my daily scripts running more than daily?</title>
	<link>http://ask.metafilter.com/34847/Why%2Dare%2Dmy%2Ddaily%2Dscripts%2Drunning%2Dmore%2Dthan%2Ddaily</link>	
	<description>Why are my daily scripts on OS X running more than daily? Being the paranoid sort, I have an rsync backup script that should run every night under OS X Tiger, but there are some problems I&apos;ve found with every method I&apos;ve tried. &lt;br&gt;
&lt;br&gt;
cron:  Does not work if the macintosh is sleeping,  but would be my preferred method for scheduling jobs in the early morning hour when I&apos;m sleeping.&lt;br&gt;
&lt;br&gt;
launchd:  Runs on it&apos;s own clock.  As far as I can tell, scheduling a task for 3:15am is meaningless if the computer sleeps.&lt;br&gt;
&lt;br&gt;
anacron:  runs the script just after midnight &lt;b&gt;and&lt;/b&gt; every time I wake up the system.  Since my purpose in waking up the system is to get some work done, this is obviously less than desirable.  &lt;br&gt;
&lt;br&gt;
At this point, I suspect my best option is to never put the system to sleep and go back to cron.  Or setup a wakeup call for my system in the power preferences just before the cron job is scheduled.  &lt;br&gt;
&lt;br&gt;
Second question: will excluding a backup directory in spotlight preferences prevent the automatic mdimport indexing of that directory every time the backup script runs?</description>
	<guid isPermaLink="false">tag:ask.metafilter.com,2006:site.34847</guid>
	<pubDate>Tue, 21 Mar 2006 21:49:05 -0800</pubDate>
	<category>anacron</category>
	<category>backup</category>
	<category>daily</category>
	<category>mac</category>
	<category>osx</category>
	<category>periodic</category>
	<dc:creator>KirkJobSluder</dc:creator>
	</item>
	<item>
	<title>Best basic strategy for 25-gig backup?</title>
	<link>http://ask.metafilter.com/32145/Best%2Dbasic%2Dstrategy%2Dfor%2D25gig%2Dbackup</link>	
	<description>I&apos;m looking for a basic, personal Mac-based backup plan.

I&apos;ve got 25 gigs of data - files and media - on my Mac that I want to keep backed up, every week at least. I&apos;ve used .Mac&apos;s Backup program, but that&apos;s too slow for this size of backup (and doesn&apos;t seem to have that capacity). Currently I manage to burn DVDs; but only every few months, since it takes a really long time, and the backup stretches over five or six disks.&lt;br&gt;
&lt;br&gt;
Finally, I know the solution a lot of people use is simply to get an external hard drive. My concern there is that it&apos;s not holding much of a history - if the hard drive fails, all my backup data is gone. Contrasted to the DVDs - if one DVD fails, I still have the others (and the disks from backups before that). &lt;br&gt;
&lt;br&gt;
Should I then get multiple hard drives and rotate between them? Is that what Mac users &quot;in the know&quot; use for their personal backups?&lt;br&gt;
&lt;br&gt;
Finally, whatever the solution - is there software that would easily allow me to designate which files/folders should be on each backup, and which shouldn&apos;t?</description>
	<guid isPermaLink="false">tag:ask.metafilter.com,2006:site.32145</guid>
	<pubDate>Mon, 06 Feb 2006 06:16:35 -0800</pubDate>
	<category>backup</category>
	<category>mac</category>
	<category>osx</category>
	<dc:creator>cgt</dc:creator>
	</item>
	<item>
	<title>Help me backup and sync my files!</title>
	<link>http://ask.metafilter.com/27610/Help%2Dme%2Dbackup%2Dand%2Dsync%2Dmy%2Dfiles</link>	
	<description>How can I backup and sync files on my mac? I have an iBook running OSX Tiger, a 256mb thumb drive, and a bit of space on the university servers that I can FTP files to.  I&apos;d like to be able to have all the things (documents, mainly) in one folder be mirrored to the other two areas; in other words, if I make a new file in &quot;AUT05-&amp;gt;POLS212-&amp;gt;Locke&quot; on my mac, I&apos;d like that same file to then show up on the thumb drive (when I plug it in, of course), and on the server.  This doesn&apos;t need to be automatic, but it&apos;d be nice if it could happen with the simple press of a button.&lt;br&gt;
&lt;br&gt;
Fetch lets me sort of &quot;mirror&quot; the files to the server, but this doesn&apos;t solve the problem of the thumb drive.  The dotmac backup and sync options look nice, but I don&apos;t need space on .mac, and I don&apos;t want to pay a hundred bucks a year for it.  Can&apos;t this be had for free/cheap?</description>
	<guid isPermaLink="false">tag:ask.metafilter.com,2005:site.27610</guid>
	<pubDate>Sun, 20 Nov 2005 21:02:37 -0800</pubDate>
	<category>backup</category>
	<category>osx</category>
	<category>sync</category>
	<dc:creator>rossination</dc:creator>
	</item>
	<item>
	<title>what is the best, most cost-effective way to backup multiple hard drives?</title>
	<link>http://ask.metafilter.com/26257/what%2Dis%2Dthe%2Dbest%2Dmost%2Dcosteffective%2Dway%2Dto%2Dbackup%2Dmultiple%2Dhard%2Ddrives</link>	
	<description>I have three 160 gig hard drives full of Apple Lossless music that I&apos;ve ripped from my CDs. I want to keep these drives backed up, obviously. Is the most cost effective route to just buy a 500 gig (or ideally, one TB) drive for this purpose? Are there enclosures that hold multiple hard drives that would be appropriate (and cost effective) for this use? With the deals out there, it seems cheaper to buy more 160s than a 500 gig. I&apos;m on a Mac G5. </description>
	<guid isPermaLink="false">tag:ask.metafilter.com,2005:site.26257</guid>
	<pubDate>Fri, 28 Oct 2005 05:34:53 -0800</pubDate>
	<category>backup</category>
	<category>drive</category>
	<category>hard</category>
	<category>mac</category>
	<category>osx</category>
	<dc:creator>thewiseacre</dc:creator>
	</item>
	
	</channel>
</rss>

