Package Details: serviio 2.3-2

Git Clone URL: https://aur.archlinux.org/serviio.git (read-only, click to copy)
Package Base: serviio
Description: Free DLNA media server
Upstream URL: http://www.serviio.org/
Licenses: custom
Submitter: cebru
Maintainer: yigits
Last Packager: yigits
Votes: 62
Popularity: 0.000000
First Submitted: 2011-04-09 16:25 (UTC)
Last Updated: 2022-10-23 20:38 (UTC)

Dependencies (2)

Required by (1)

Sources (5)

Latest Comments

« First ‹ Previous 1 .. 3 4 5 6 7 8 9 Next › Last »

benwbooth commented on 2012-07-27 02:50 (UTC)

This worked for me to get serviio and serviio-console running: edit /usr/bin/serviio, change CP to "$SERVIIO_HOME/lib/*:$SERVIIO_HOME/config" edit /usr/bin/serviio-console, change CP to "$SERVIIO_CONSOLE_HOME/lib/*:$SERVIIO_CONSOLE_HOME/config"

benwbooth commented on 2012-07-27 02:28 (UTC)

Hi, Please add $SERVIIO_HOME/lib/serviio-media-browser.jar to the classpath in /usr/bin/serviio. Thanks!

bjo commented on 2012-04-13 15:28 (UTC)

@jusubu: I added your rc.d-script.

<deleted-account> commented on 2012-02-19 20:55 (UTC)

A rc.d script for Serviio I made a while back: Save it as /etc/rc.d/serviiod and make it executable #!/bin/bash . /etc/rc.conf . /etc/rc.d/functions NAME="Serviio Media Server" PID=$(pgrep -f serviio.MediaServer -n) case "$1" in start) stat_busy "Starting $NAME" [ -z "$PID" ] && /usr/bin/serviio & if [ $? -gt 0 -o -n "$PID" ]; then stat_fail else add_daemon serviio stat_done fi ;; stop) stat_busy "Stopping $NAME" [ ! -z "$PID" ] && /usr/bin/serviio -stop &> /dev/null if [ $? -gt 0 ]; then stat_fail else rm_daemon serviio stat_done fi ;; restart) $0 stop sleep 5 $0 start ;; *) echo "usage: $0 {start|stop|restart}" ;; esac exit 0

ilpianista commented on 2012-01-10 22:16 (UTC)

Also an rc script would be nice ;)

ilpianista commented on 2012-01-10 22:15 (UTC)

This SHOULDN'T be run as root. You should create a serviio user using the install scriplet.

smaxer commented on 2012-01-06 11:56 (UTC)

yesterday 0.6.1 has been released.