Logitech Media Server(Squeezebox 서버)를 설치하는 방법은 무엇입니까?

Logitech Media Server(Squeezebox 서버)를 설치하는 방법은 무엇입니까?

Logitech Media Server의 최신 설치 파일은 어디서 구할 수 있으며 올바르게 설치하려면 어떻게 해야 합니까?

(저는 Raspberry Pi 2에서 실행 중이며 SD 카드 오류로 인해 여러 번 다시 설치해야 했습니다. 그래서 이 질문에 대한 답변은 주로 나 자신을 상기시키기 위해 답변하겠습니다.)

답변1

작성하는 시점에서 최신 버전은 7.9.2입니다.

이용 가능합니다여기. 다른 여러 버전의 개요를 찾을 수 있습니다.여기. link시스템에 맞게 파일을 클립보드에 복사합니다 .

를 사용하여 파일을 시스템에 다운로드합니다 wget link. 를 file사용하여 설치하십시오 sudo dpkg -i file. 이것은설치에 실패하다종속성이 누락되었기 때문입니다.

으로 수정하세요 sudo apt -f install.

로 시작하세요 sudo service logitechmediaserver start.

으로 실행 중인지 확인하세요 top.

에서 사용 가능한 Web-GUI를 통해 서버에 연결합니다 http://IPofYOURserver:9000.


설정에 있습니다 /var/lib/squeezeboxserver/prefs/server.prefs.

여기에는 미디어 라이브러리용 디렉토리뿐만 아니라 기존 Squeezebox Boom의 디스플레이에 표시되는 정보의 크기와 같은 로컬 클라이언트에 대한 설정도 포함됩니다.

모든 것을 새로 설정하지 않으려면 재정의할 수 있습니다 server.prefs. 이것을 할 수 있으려면 sudo systemctl stop logitechmediaserver.

그런 다음 파일을 복사하고 sudo chown squeezeboxserver:nogroup /var/lib/squeezeboxserver/prefs/server.prefs.

마지막으로, sudo systemctl start logitechmediaserver.


업데이트: 사용자를 squeezeboxserver그룹에 추가해야 할 수도 있습니다 users. 또한 재생목록의 위치는 이어야 합니다 chmod 775.


ufw처리 와 같은 방화벽을 사용하는 경우포트설명된다여기.


다른 파일은 여기에서 찾을 수 있습니다:http://wiki.slimdevices.com/index.php/Logitech_Media_Server_file_locations#Ubuntu_.3E12.04

답변2

Ubuntu 20.04로 업그레이드했는데 설치가 중단되었지만 다시 작동하게 하는 방법을 알아냈습니다.

약간의 조정 후에 새로 설치하는 것을 고려했습니다. 그래서 /var/lib/squeezeboxserver/에서 오래된 내용을 삭제했습니다.

그런 다음 다음에서 버전 8.0(베타)에 대한 새로운 deb-packet을 받았습니다.http://downloads.slimdevices.com/nightly/?ver=8.0

개인적으로 저는 가장 플랫폼적인 버전을 사용했지만 플랫폼에 따라 적합한 Deb를 선택하면 됩니다.

wget http://downloads.slimdevices.com/nightly/8.0/lms/cf7bcdb87b4f8bf6f71f5b5444c923afae4c300d/logitechmediaserver_8.0.0~1589180193_all.deb

다음을 사용하여 설치했습니다: dpkg -i logitechmediaserver_8.0.0_1588799628_all.deb

이전 버전도 시도하고 git checkout도 시도했기 때문에 다른 스크립트가 이미 알아차리지 못한 채 수행한 세부 정보가 부족하지 않기를 바랍니다.

dpkg 설치에 사용자 및 그룹이 아직 추가되지 않은 경우 다음을 수행하십시오.

adduser squeezeboxserver
usermod -a -G squeezeboxserver squeezeboxserver

pid 파일용 디렉터리를 만듭니다.

mkdir /var/run/logitechmediaserver

그리고 해당 사용자와 그룹에 제공합니다.

chown squeezeboxserver:squeezeboxserver /var/run/logitechmediaserver

/var/lib/squeezeboxserver/에 있는 내용도 마찬가지입니다.

chown squeezeboxserver:squeezeboxserver /var/lib/squeezeboxserver
chown -R squeezeboxserver:squeezeboxserver /var/lib/squeezeboxserver/*

문제는 /etc/init.d의 시작 스크립트에서 발생합니다. Ubuntu 20.04에는 더 이상 시작-중지-데몬이 없으므로 작동하지 않습니다. 일부 스크립트에서는 작동할 수 있지만 logitechmediaserver에서는 작동하지 않는 /bin/true에 간단히 연결됩니다. 나는 이 프로그램에 대해 C 구현을 시도했지만 경첩이 있었기 때문에 시작-중지 데몬을 삭제하고 그에 따라 시작 프로그램을 수정했습니다.

이전 시작 스크립트를 저장하고(단순히 저장하기 위해) 이 내용을 원하는 편집기에 복사하세요.

#!/bin/sh
#
# $Id$
#
# logitechmediaserver   initscript for slimserver.pl
#           This file should be placed in /etc/init.d.
#
# Original Author: Mattias Holmlund
#
# Updated By: Dan Sully, Michael Herger, Alexander Hartmann

#
### BEGIN INIT INFO
# Provides:             logitechmediaserver
# Required-Start:       $all
# Required-Stop:        $all
# Should-Start:         $all
# Should-Stop:          $all
# Default-Start:        2 3 4 5
# Default-Stop:         0 1 6
# Short-Description:    Startup script for the Logitech Media Server
# Description:      Logitech Media Server powers the Squeezebox, Transporter and SLIMP3 network music \
#           players and is the best software to stream your music to any software MP3 \
#           player. It supports MP3, AAC, WMA, FLAC, Ogg Vorbis, WAV and more! \
#           As of version 7.7 it also supports UPnP clients, serving pictures and movies too!"
### END INIT INFO
#
# -e  Exit immediately if a command exits with a non-zero status.
set -e

# Load the VERBOSE setting and other rcS variables
. /lib/init/vars.sh

# Define LSB log_* functions.
# Depend on lsb-base (>= 3.2-14) to ensure that this file is present
# and status_of_proc is working.
. /lib/lsb/init-functions


### About logitechmediaserver
# The logitechmediaserver is kind of special. It uses the
# squeezeboxserver_safe script, to restart any died squeezeboxserver. This
# can easily happen, for example if you use a MySQL server. Depending on unix
# flavour you are running they sometimes do a regular restart. That would
# cause the squeezeboxserver to terminate. Because of that the 
# squeezeboxserver_safe starts a logitechmediaserver every few seconds, which
# gets shut down again if any other logitechmediaserver is still running.
#
# Sadly this procedure messes up, the process id file. You would get a new id
# file, every time a new server process gets started. That process will
# terminate but the process id of the first server process is lost. So the
# killing the squeezeboxserver have to be done with analysing the process
# table.
#
# As I upgraded to Ubuntu 20.04 my logitechmediaserver stopped working.
# Installing the lastest 8.0 version was no problem downloading the deb-packet
# and installing with dpkg. But the server did not start. I could start it
# manually but the startup script was not able to start it. After some looking
# around I found this:
#
#           /sbin/start-stop-daemon -> /bin/true
#
# This explains why the start up script is not working. There is no package
# in the ubuntu package repository for the start-stop-daemon.
#
# First I tried the C implementation of start-stop-daemon from Dale O'Brien on
# github (https://github.com/daleobrien/start-stop-daemon). It does not
# implement the --remove-pidfile option the original script. But more 
# problematic it threw the error not able to terminate the server while
# doing it without a problem.
#
# I had to compile the C implementation from Dale O'Brien myself, which
# worked without a hitch. Considering the limiations of the implementation
# I came to the conclusion to ditch the start-stop-daemon completly and 
# doing it the old school way.


PATH=/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin
DESC="Logitech Media Server"
NAME=squeezeboxserver
NEWNAME=logitechmediaserver
DAEMON=/usr/sbin/$NAME
DAEMON_RESTARTER=/usr/sbin/${NAME}_safe
PIDFILE=/var/run/$NEWNAME/${NEWNAME}.pid
SCRIPTNAME=/etc/init.d/$NEWNAME
SLIMUSER=$NAME
SLIGROUP=$NAME
PREFSDIR=/var/lib/$NAME/prefs
LOGDIR=/var/log/$NAME/
CACHEDIR=/var/lib/$NAME/cache
CHARSET=utf8
SLEEPTIMER=1

## if you want to add additional options
## use /usr/sbin/squeezeboxserver --help 
## for the supported options and place them
## into the configfile  /etc/default/logitechmediaserver


# Read config file if it is present.
if [ -r /etc/default/$NEWNAME ]; then
    . /etc/default/$NEWNAME
elif [ -r /etc/default/$NAME ]; then
    . /etc/default/$NAME
fi

#
#   Function that starts the daemon/service.
#
d_start() {
        # Where is your su installed?
        SU_BIN=$(command -v su)

        # Use squeezeboxserver_safe to restart the daemon when
        # it dies. This must be done to handle mysql restarts.

        $SU_BIN - $SLIMUSER \
          -s /bin/sh \
          -c "$DAEMON_RESTARTER \
                $DAEMON \
                  --user $SLIMUSER \
                  --group $SLIGROUP \
                  --prefsdir $PREFSDIR \
                  --logdir $LOGDIR \
                  --cachedir $CACHEDIR \
                  --charset=$CHARSET \
                  --daemon \
                  $SLIMOPTIONS \
              > /dev/null 2>&1 &"


        # Writing the pid for the restarter          
        PID=$(ps ax | \
          grep "$DAEMON_RESTARTER $DAEMON" | \
          grep -v grep | \
          head -1 | \
          awk '{print $1}' )

        if [ $PID ]
        then
          if [ $PID -gt 0 ]
          then
            echo -n "  Started the restarter with the process id: "
            echo $PID

            if [ -e $PIDFILE ]
            then
              rm $PIDFILE
            fi

            echo -n $PID > $PIDFILE
          fi
        else
            echo "  ERROR: No process id for the restarter could be found!"
        fi


        # Check if the server is successfully started        
        PERL_BIN=$(command -v perl)

        PID_SERVER=$(ps ax | \
          grep "$PERL_BIN $DAEMON" | \
          grep -v grep | \
          head -1 | \
          awk '{print $1}' )

        if [ $PID_SERVER ]
        then
          if [ $PID_SERVER -gt 0 ]
          then
            echo "  Started the server successfully."
          else
            echo "  ERROR: No process id for the server could be found!"        
          fi
        fi
}


#   Function that stops the daemon/service.
#
d_stop() {
    echo -n "  Checking if the restarter is still running: "

    ## This will kill the squeezeboxserver_safe script. So we don't have
    ## to bother about it, starting new processes.

    PID1=$(ps ax | \
      grep "$DAEMON_RESTARTER $DAEMON" | \
      grep -v grep | \
      head -1 | \
      awk '{print $1}' )


    if [ $PID1 ]
    then
      echo positive
      if [ $PID1 -gt 0 ]
      then
        echo -n "  Stopping now restarter: "

        kill $PID1

            if [ -e $PIDFILE ]
            then
              rm $PIDFILE
        fi

        echo done.
      fi
    else
            echo negative
        fi

    ## We have to kill at least one server process. Possible two processes
    ## and in weird cases  under real high load even three processess.
    ## So a loop it is.
    ## We have to wait for at least one second for closing the process
    ## and analyzing the process list again.

        echo -n "  Checking if any server instances are running: "

    PERL_BIN=$(command -v perl)

        PID2=$(ps ax | \
          grep "$PERL_BIN $DAEMON" | \
          grep -v grep | \
          head -1 | \
          awk '{print $1}' )

        if [ $PID2 ]
        then
          echo positive
          echo -n "  Stopping now all server instances: "
          if [ $PID2 -gt 0 ]
          then
            while [ $(ps ax | \
              grep "$PERL_BIN $DAEMON" | \
              grep -v grep | \
              head -1 | \
              awk '{print $1}') ]
            do
          kill $(ps ax | \
                grep "$PERL_BIN $DAEMON" | \
                grep -v grep | \
                head -1 | \
                awk '{print $1}')
              sleep $SLEEPTIMER
            done
            echo done
          fi
        else
          echo negative
        fi
}

#
#   Function that sends a SIGHUP to the daemon/service.
#
d_reload() {
    start-stop-daemon --stop --quiet --pidfile $PIDFILE --signal 1
}

case "$1" in
  start)
    echo "Making sure that $DESC is not running: "
    d_stop
    echo "Starting $DESC:"
    d_start
    ;;
  stop)
    echo "Stopping $DESC:"
    d_stop
    ;;
  restart|force-reload)
    #
    #   If the "reload" option is implemented, move the "force-reload"
    #   option to the "reload" entry above. If not, "force-reload" is
    #   just the same as "restart".
    #
    echo "Restarting $NAME."
    d_stop
    d_start
    ;;
  status)  
    status_of_proc /usr/bin/$NEWNAME $NEWNAME
    ;;
  *)
    echo "Usage: $SCRIPTNAME {start|stop|restart|force-reload|status}" >&2
    exit 1
    ;;
esac

exit 0

예, 예쁘지는 않지만 저에게는 효과가 있고 여러분에게도 도움이 되기를 바랍니다. logitechmediaserver 이름으로 /etc/init.d에 배치해야 합니다.

그런 다음 systemctl을 만족시키려면 다음 명령을 실행해야 합니다.

systemctl daemon-reload

시작하면서 테스트를 실행해 보세요.

/etc/init.d/logitechmediaserver start

웹브라우저로 로그인할 수 있어야 합니다.http://귀하의서버IP:9000/그리고 구성해보세요.

그리고 다시 종료되는지 테스트합니다.

/etc/init.d/logitechmediaserver stop

모든 것이 해결되면 서비스를 활성화하십시오.

systemctl enable logitechmediaserver.service

관련 정보