HowTo - Install Subsonic on Ubuntu
There is so much great software available for ubuntu. This weekend I ran into subsonic, an excellent music streaming website you can host from your own PC. This can be used over LAN or WAN (be careful with security).
I followed the following url’s excellent instructions, but I’ll include them for future usage.
http://ubuntuforums.org/showthread.php?t=920178
URL: http://subsonic.sourceforge.net
Step1: Dependencies
sudo apt-get install tomcat5.5
cd; wget http://prdownloads.sourceforge.net/subsonic/subsonic-3.4.zip
Step2: Modify Init For Tomcat & Start
sudo nano /etc/init.d/tomcat5.5
Change TOMCAT_SECURITY=yes to TOMCAT_SECURITY=no
sudo /etc/init.d/tomcat5.5 start
Step3: Unzip/Install Subsonic
unzip subsonic-3.4.zip
mv subsonic.war /var/lib/tomcat5.5/webapps/
mkdir /var/subsonic
chown tomcat55:nogroup /var/subsonic
Step4: Test
firefox http://127.0.0.1:8180/subsonic





