Auf Kommentar antworten
Time Machine backup to My Book World Edition NAS
By Bernhard Fürst - Posted on Mai 14th, 2009
How to do Time Machine backups on the My Book World Edition NAS (network attached storage).
- Set up an additional share at the NAS and mount it on the Mac. Better use an Ethernet wire because it is much faster than the Airport connection. That depends on your router hardware though. Short test showed AFP protocol to be faster than SMB.
- Create a sparse disk image on the Mac using the Terminal app:
hdiutil create -size 390g -fs HFS+J -type SPARSEBUNDLE -volname "Backup of <Name of the Mac>" <Name of the Mac>_<MAC of en0>.sparsebundle- 390g: How much space should be used at the NAS for your backup.
- MAC of en0: The MAC address of the built-in Ethernet device. Get it either by running
ifconfigand look for ''ether 00:xx:xx:xx:xx:xx'' in the ''en0'' section or use System Preferences > Network > Built-in Ethernet, click the ''Advanced'' button and the ''Ethernet'' tab. There is the ''Ethernet ID'' which is the MAC actually. Remove the colons from the MAC when using it in thehdiutilcommand. - The name of your Mac as seen in the Sharing system panel at the ''File Sharing'' section. (I don't know how to handle spaces and other special chars - may be you can just escape them by back slash.)
- Example:
hdiutil create -size 390g -fs HFS+J -type SPARSEBUNDLE -volname "Backup of MayasMac" MayasMac_00xxxxxxxxxx.sparsebundle
- Copy the created disk image to the NAS volume. Delete the file at the Mac - you don't need it there any longer.
- Allow Time Machine to use the NAS volume. In the Terminal app run:
defaults write com.apple.systempreferences TMShowUnsupportedNetworkVolumes 1 - Choose the NAS volume in the Time Machine System Preferences panel.
- Start the Time Machine backup. First time run will take some ours probably.
See also http://forums.macosxhints.com/showthread.php?p=493450 for a discussion about this topic.

