我正在尝试让我的 ubuntu 14.04 运行通用媒体服务器,这样我就可以将电影流式传输到我的 ps3(不幸的是最低固件为 4.55 - 无法越狱)。
在网上搜索了一番之后,我终于可以让它作为服务运行了,/etc/init.d/UMS.sh
其他文件都在/usr/ums
文件夹中。这些包括UMS.conf
配置文件、UMS.sh
文件、ums.jar
文件和所有其他文件。
我曾经使用cream
(gedit
在创建这些临时文件时遇到问题,稍后我需要删除它们)来编辑UMS.conf
文件。
我尝试让它在特定端口上运行并拥有 IP 白名单,这样网络上的每个人都无法访问我的东西。
因此我对文件进行了更改UMS.conf
,加载了几次以仔细检查更改是否保存 - 它们确实保存了 - 但是当我这样做时:
service UMS.sh start
UMS 将启动但所有配置均采用默认配置。
请帮忙。我是 Ubuntu 新手,所以请指导我。如果有帮助,我可以提供脚本/etc/init.d/UMS.sh
,但请告诉我如何粘贴到这里,我试过了,# 使内容变粗。
更新:在莱蒂齐亚的评论的帮助下,以下是脚本
'/etc/init.d/UMS.sh'
#!/bin/bash
#
### BEGIN INIT INFO
# Provides: ums
# Required-Start: $local_fs $remote_fs $network
# Required-Stop: $local_fs $remote_fs $network
# Default-Start: 2 3 4 5
# Default-Stop: 0 1 6
# Short-Description: Starts UMS program.
# Description: Java Upnp Media Server dedicated to PS3
### END INIT INFO
#set -x
# Author: Papa Issa DIAKHATE <[email protected]>
#
PATH=/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin
DESC="Universal Media Server"
NAME=UMS.sh
UMS_PROFILE=/etc/$NAME
DAEMON=/usr/ums/$NAME
DAEMON_OPTS="console"
SCRIPTNAME=/etc/init.d/$NAME
UMS_START=1 # Wether to start or not UMS ver at boot time.
DODTIME=30 # Time to wait for the server to die, in seconds.
# If this value is set too low you might not
# let the program to die gracefully and 'restart' will not work
test -x $DAEMON || exit 1
# Load the VERBOSE setting and other rcS variables
. /lib/init/vars.sh
# Define LSB log_* functions.
# Depend on lsb-base (>= 3.0-6) to ensure that this file is present.
. /lib/lsb/init-functions
# Include ums defaults if available
if [[ -f "/etc/default/$NAME" ]] ; then
. /etc/default/$NAME
fi
# May we run the init.d script ?
[[ $UMS_START = 1 ]] || exit 1
#--------------------------------------------------------------------------
# Some color codes
txtred=$'\e[0;31m' # Red
txtylw=$'\e[0;33m' # Yellow
txtrst=$'\e[0m' # Text Reset
#--------------------------------------------------------------------------
warnout(){
echo >&2 -e ""$txtylw"Warning:$txtrst $1"
}
#--------------------------------------------------------------------------
running(){
pid=`pgrep -f 'java .*ums.jar.*'`
}
#--------------------------------------------------------------------------
do_start(){
running && { warnout "$NAME is already running !"; exit 0; }
echo "Starting $DESC : $NAME"
UMS_PROFILE="$UMS_PROFILE" start-stop-daemon --start --quiet --background --oknodo \
--exec $DAEMON -- $DAEMON_OPTS
}
#--------------------------------------------------------------------------
do_stop(){
running || { warnout "$NAME is NOT running !"; exit 0; }
local countdown="$DODTIME"
echo -e "Stopping $DESC : $NAME \c "
kill -9 $pid
while running; do
if (($countdown >= 0)); then
sleep 1; echo -n .;
((--countdown))
else
break;
fi
done
echo
# If still running, then try to send SIGINT signal
running && { \
echo >&2 "Using kill -s SIGINT instead"; \
echo >&2 "If you see this message again, then you should increase the value of DODTIME in '$0'."; \
kill -2 $pid; \
}
if [ -e "/usr/share/ums/debug.log" ]; then
count=9
while [ $count -ge 1 ]
do
if [ -e "/usr/share/ums/debug.log.$count" ]; then
plus=$((count+1))
mv "/usr/share/ums/debug.log.$count" "/usr/share/ums/debug.log.$plus"
fi
count=$((count-1))
done
if [ -e "/usr/share/ums/debug.log" ]; then
mv "/usr/share/ums/debug.log" "/usr/share/ums/debug.log.1"
fi
fi
return 0
}
#--------------------------------------------------------------------------
do_force-stop(){
running || { warnout "$NAME is NOT running !"; exit 0; }
echo "Stopping $DESC : $NAME"
kill -9 $pid
if [ -e "/usr/share/ums/debug.log" ]; then
count=9
while [ $count -ge 1 ]
do
if [ -e "/usr/share/ums/debug.log.$count" ]; then
plus=$((count+1))
mv "/usr/share/ums/debug.log.$count" "/usr/share/ums/debug.log.$plus"
fi
count=$((count-1))
done
if [ -e "/usr/share/ums/debug.log" ]; then
mv "/usr/share/ums/debug.log" "/usr/share/ums/debug.log.1"
fi
fi
}
#--------------------------------------------------------------------------
do_status(){
echo -n " * $NAME is "
( running || { echo "NOT running "; exit 0; } )
( running && { echo "running (PID -> $(echo $pid))"; exit 0; } )
}
#--------------------------------------------------------------------------
case "$1" in
start|stop|force-stop|status)
do_${1}
;;
restart|reload)
do_stop
do_start
;;
force-restart|force-reload)
do_force-stop
do_start
;;
*)
echo "Usage: $SCRIPTNAME {start|stop|force-stop|restart|force-restart|reload|force-reload|status}"
exit 1
;;
esac
答案1
看起来您使用与我安装 UMS 时相同的脚本。我遇到了同样的问题,并找到了解决方法。该脚本在 /etc 中创建一个链接,指向 /root 中不存在的文件。如果您在 /etc 上执行 ls -l,您应该会看到类似以下内容:
UMS.sh < /root/.config/UMS.conf
但脚本实际上从未创建该文件,可能也没有权限。所以我所做的就是删除该链接并创建一个指向 /usr/ums/ 中的配置文件的新链接
sudo rm /etc/UMS.sh
sudo ln -s /usr/ums/UMS.conf /etc/UMS.sh
这对我来说最终是有效的,现在我只需编辑 UMS.conf 文件即可进行任何更改。希望这对您有所帮助。
答案2
不,正确的解决方法是这样的:
- 以 root 身份运行 UMS.sh;它将创建配置文件 /root/.config/UMS
- 编辑启动脚本 /etc/init.d/ums 并正确输入配置文件路径:UMS_PROFILE=/root/.config/UMS/