Install on mac. These instructions use sudo, so be careful. I assume no responsibility if you erase your hard drive or do anything else damaging.
1. Download standalone version from here:
http://subsonic.sourceforge.net/download.php
If you are in Leopard, it should have downloaded to your "Downloads" folder. If you are in a previous version of Mac OS X, it is probably on your desktop.
The name of the file is something like:
subsonic-3.6-standalone.tar.gz
If the file has not been expanded automatically, double-click on it, until it expands. When expanded, you should just see a folder called, "subsonic-3.6-standalone". Rename the folder to just "subsonic".
Take note of where the folder is (Downloads vs. Desktop vs. somewhere else)
2. Open up a terminal window. The program, "Terminal" is in your /Applications/Utilities folder.
You should see a grey/white terminal window.
At the prompt (probably a $), type the following:
- Code: Select all
sudo cp -R ~/Downloads/subsonic /var/
and hit return. That's a tilde - not a minus sign. If your subsonic folder is not in Downloads (on the Desktop for instance), be sure to replace "Downloads" with the name of the current location. Enter your password when asked. There should be a pause, and then you will have your prompt back. If you get an error, you did something wrong. Go back and troubleshoot.
Type:
- Code: Select all
cd /var
ls
and you should see a directory listing, including your newly copied subsonic folder.
Type:
- Code: Select all
sudo chmod 777 subsonic
This will change the persmissions on the subsonic folder for you.
Type:
- Code: Select all
cd subsonic
./subsonic.sh
Subsonic should now launch.
After a few seconds, open a browser window and type:
- Code: Select all
http://localhost:8080
and follow the on-screen directions.
If you want to access your music from another computer in your house, just type in the IP address of your server computer with the 8080. Eg. 192.168.1.110:8080. If you want to access your music from outside your home network, you will need to either know your public IP or register your IP at dyndns.org. You will also have to forward port 8080 to that computer. This sounds more complicated that it is.
Good luck. Post back if you have questions.