Submit Hint Search The Forums LinksStatsPollsHeadlinesRSS
14,000 hints and counting!


Click here to return to the 'Use a Linux box as an iTunes music server (remotely)' hint
The following comments are owned by whoever posted them. This site is not responsible for what they say.
Use a Linux box as an iTunes music server (remotely)
Authored by: mikew on Feb 01, '04 06:30:33AM
I used the following quick hack using SSH. First compile mDNSResponderPosix on your local machine. That is the machine on which you run iTunes. I used the Posix version since that compiled cleanly and I had no joy with the MacOSX version. Next start the ProxyResponder
mDNSProxyResponderPosix 127.0.0.1 MusicServer "Home MusicLib" _daap._tcp 3689 &
and then setup a ssh connection to the server with port 3689 forwarded to the server.
ssh -L 3689:127.0.0.1:3689 MusicServer 
and if daapd is running on the MusicServer you should see your remote library in iTunes.

Note that running mDNSProxyResponder on the local machine seems to break other local Rendezvous browsing. I haven't figured out what exactly happens.

[ Reply to This | # ]