Update – Monday 26th December 2011.
Being a long term Logitech Squeezebox owner, I’m pleased to see that they have now incorperated a DNLA Server into their software and renamed it “Logitech Media Server“. I now no longer use Twonkyserver as the above software now serves my needs.
However, I’m keeping the instructions below so that other people can configure Twonkyserver on Linux.
Before we begin.
This is a commercial product, you will have to buy a license, however IMHO, it’s well worth the asking price, as it vastly outperforms the opensource products like Fuppes and MediaTomb with much better stability, and much lower runtime resources. There is a free trial, so you can evaluate it’s performance before you buy.
First thing you need to do is download twonkyserver to your machine.
wget http://www.twonky.com/upfiles/twonkymedia-i386-glibc-2.2.5-6.0.23.sh
Next we have to install it as root
chmod 744 twonkymedia-i386-glibc-2.2.5-6.0.23.sh
sudo ./twonkymedia-i386-glibc-2.2.5-6.0.23.sh
Set up the appropopriate multicast address to broadcast your files on your network.
sudo route add -net 224.0.0.0 netmask 240.0.0.0 dev eth0
Of course, the above will only be in your routing table until the next time you reboot your server. So a better solution is to append the following file.
sudo nano /etc/network/interfaces
Add the following to the bottom of the file (append to the bottom of your network settings, usually eth0 if you only have one network card.
# Adding a multicast static route for Twonkymedia Server
up route add -net 224.0.0.0 netmask 240.0.0.0 dev eth0
down route del -net 224.0.0.0 netmask 240.0.0.0 dev eth0
Starting Twonkyserver at boot using upstart or Debian runlevels
We need to start twonkyserver on the default runlevels. I’m including two ways of doing this. One specifically for Ubuntu 10.04 onwards using upstart and another for a default Debian install.
Ubuntu 10.04 runlevels using Upstart
Stop tonkyserver running.
sudo /etc/init.d/twonkyserver stop
Delete the installed twonkyserver startup script.
sudo rm /etc/init.d/twonkyserver
Create an upstart startup file called twonkyserver.conf in directory /etc/init/
sudo nano /etc/init/twonkyserver.conf
Copy and paste the following code snippet.
# Mostly Raymond Day’s work, thanks for the suggestion.
# If your going to run Twonkyserver as a daemon,
# append the -D to the command line at the bottom.
# Not currently running as a daemon to support
# transcoding. The default is with a -D so feel
# free to add it if you don’t intend to use
# transcoding.
description “TonkyMedia UPnP Server”
start on (local-filesystems and net-device-up IFACE!=lo)
stop on runlevel [!2345]
exec /usr/local/twonkymedia/twonkymediaserver
Create a symbolic link in the init.d directory to start the upstart job on reboot.
sudo ln -s /lib/init/upstart-job /etc/init.d/twonkyserver
Now to Test.
Start twonkyserver from the command line.
You should get a message similar to the following.
twonkyserver start/running, process 1258
If you need to stop twonkyserver, you type the following.
At this point, it may be worth rebooting your linux server to ensure that twonkyserver comes up correctly. After you’ve done so, you can check to make sure that twonkyserver is running by typing the following.
If all is well, it should come back with the message
twonkyserver start/running, process 1699
All done, you of course will most likely have a different process id
Debian default runlevels
sudo update-rc.d twonkyserver defaults 99 20
Continue reading →