Installing Subsonic on the Ubuntu Linux distribution is a straight-forward process.
The following was done with Subsonic 3.6 and Ubuntu 8.10.
Step 1: Install Sun Java 6 (or later):
- Code: Select all
$ sudo apt-get install sun-java6-jdk
Step 2: Download Subsonic standalone version and install it in /var/subsonic/standalone, as described here.
- Code: Select all
$ sudo mkdir -p /var/subsonic/standalone
$ sudo tar -C /var/subsonic/standalone -zvxf subsonic-3.6.beta2-standalone.tar.gz
Step 3: To start Subsonic, execute the subsonic.sh script:
- Code: Select all
$ sudo /var/subsonic/standalone/subsonic.sh
If you like Subsonic to start automatically when booting, add the following line to /etc/rc.local:
- Code: Select all
/var/subsonic/standalone/subsonic.sh
Your comments are welcome!