{ radak.org }         just another (tech) blog

14Aug/101

How to use Mac OS X TimeMachine with Samba or NFS

1. Set your computer name:
System Preferences - Sharing - Computer name
2. Enable network drives for TimeMachine:
in Terminal:
defaults write com.apple.systempreferences TMShowUnsupportedNetworkVolumes 1
3. Create 200Gbyte sparsebundle:
in Terminal:
hdiutil create -size 200g -fs HFS+J -volname "My Backup" /tmp/`scutil --get ComputerName`_`ifconfig en0 | grep ether | awk {'print $2'} | tr -d ":"`.sparsebundle
4. Mount your share:
Finder - Go - Connect: smb://USERNAME@SAMBA_MACHINE/SAMBA_SHARE
5. Copy sparsebundle to samba share (1-2 min):
in Terminal:
cp -Rp /tmp/`scutil --get ComputerName`_`ifconfig en0 | grep ether | awk {'print $2'} | tr -d ":"`.sparsebundle /Volumes/SAMBA_SHARE
6. Set up TimeMachine Disk:
System Preferences - Time Machine - Change Disk: select your share

The first backup will take a long time!

Filed under: Unix tricks 1 Comment
20Apr/109

Multicast over SSH tunnel with TAP bridge

If you found this post you know what you want, so I won't describe it from the begining!

My network plan was:

Multicast over SSH tunnel with TAP bridge

Filed under: Unix tricks More...