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

1 2 3 4 5 6 .. 9 Next › Last »

yigits commented on 2022-05-20 00:09 (UTC)

@cherio thank you for the heads up, pushed a new release to address those issues

cherio commented on 2022-05-16 21:40 (UTC) (edited on 2022-05-16 21:43 (UTC) by cherio)

There seem to be a problem with serviio.sh. The syntax inside assumes "bash" however the shebang specifies #!/bin/sh which is a directive to use POSIX compatible shell. While by default in arch sh points to bash, it is not a requirement to have bash as a fallback; both arch bash and dash documentation briefly touches upon POSIX compatibility.

The script needs either to tweak syntax to use POSIX compatible expressions (see below) or change shebang to #!/bin/bash - either way it is a simple fix.


#!/bin/sh

if [ "$(id -u)" -eq "0" ]; then
    if [ -f /etc/profile.d/jdk.sh ]; then
        . /etc/profile.d/jdk.sh
    elif [ -f /etc/profile.d/jre.sh ]; then
        . /etc/profile.d/jre.sh
    fi
    export PATH=/usr/lib/jvm/java-8-openjdk/jre/bin/:$PATH
    SERVIIO_HOME="/usr/share/java/serviio"
    SERVIIO_CLASS_PATH="$SERVIIO_HOME/lib/*:$SERVIIO_HOME/config"
    JAVA_OPTS="-Djava.net.preferIPv4Stack=true -Djava.awt.headless=true -Dderby.system.home=$SERVIIO_HOME/library -Dserviio.home=$SERVIIO_HOME -Dffmpeg.location=ffmpeg"

    java -Xmx384M $JAVA_OPTS -classpath $SERVIIO_CLASS_PATH org.serviio.MediaServer "$@"
else
    echo "Must be run as root."
fi

lesebas commented on 2021-10-13 19:31 (UTC)

Sorry I do not use this app anymore and don't have time to maintain it. Disowned.

kiswa commented on 2021-10-13 19:04 (UTC)

Will this be getting an update to the latest version anytime soon?

skeezmoe commented on 2020-07-29 20:38 (UTC) (edited on 2020-07-29 20:41 (UTC) by skeezmoe)

For those having post install issues refer to: https://forum.manjaro.org/t/serviio-dlna-media-server-install/115555

I followed the instructions in the link and now it works:

After install use these commands to get it going . systemctl start serviio.service ( Starts the service and it will start at boot . ) systemctl stop serviio.service ( Stops the service ) systemctl status serviio.service ( Will show you the server status )

zerophase commented on 2019-06-20 05:15 (UTC)

Anyone else having issues accessing the serviio console since updating to 2.0?

lesebas commented on 2019-01-15 21:43 (UTC)

@zerophase

Done

zerophase commented on 2019-01-12 20:01 (UTC)

jre10-openjdk-headless seems to work fine for this. could you change java-runtime-headless to >=8?

lesebas commented on 2019-01-06 15:51 (UTC)

Up to date, enjoy.

lesebas commented on 2019-01-05 17:05 (UTC)

Hi, I will update the package as soon as I will be back at home. Please be patient or download the pkgbuild and modify it locally to buildthe pkg.