Forum archive
Updated DLNA media server patch with webui
Here ia an updated Dlna media server patch that now includes a simple webui .
Licence included in readme
Serviio is developed by Petr Nejedly who lives in London and works as a freelance Java consultant.
build notes
#!/bin/bash -ex
# By Alex Bassett
install()
{
DEBIAN_FRONTEND=noninteractive apt-get -y \
-o DPkg::Options::=--force-confdef \
-o DPkg::Options::=--force-confold \
install $@
}
#Update package information
apt-get update
#Install Additional packages
install ffmpeg openjdk-6-jre-headless
#use wget for main package ( go to downloads page for new links )
wget http://download.serviio.org/releases/serviio-0.6.0.1-linux.tar.gz
tar xzf serviio-0.6.0.1-linux.tar.gz
rm serviio-0.6.0.1-linux.tar.gz
#Clean up any leftovers cruft
apt-get -y autoremove
apt-get clean
looks simple I hope
I also added a simple overlay script to start Serviio
# serviio.conf
# used to start serviio after networking starts
# start on started networking
description "start on started networking"
start on runlevel [2345]
stop on runlevel [!2345]
exec /serviio-0.6.0.1/bin/serviio.sh
I also added a start script for the webui.
# serviio-webui.conf
# used to start serviio-webui after serviio starts
# start on started networking
description "start on started serviio"
start on runlevel [2345]
stop on runlevel [!2345]
exec /serviio-0.6.0.1/bin/serviio-webui.sh
The overlay also adds :
/serviiopatch/overlay/serviio-0.6.0.1/bin/serviio-webui.sh
/serviiopatch/overlay/serviio-0.6.0.1/plugins/serviio-webclient (an executable Jar file)
All default services stay un-touched as do usernames and passwords.
Included in the attached zip file is serviiopatch.tar.gz and a short read me which gives more details for the setup of the console in windows and linux , serviio console also works on Mac.
feed back is most welcome
Alex Bassett
Seems this patch has a problem reported on this site with Ubuntu udev upgrade.
work around is : echo udev hold | dpkg --set-selections