i figured out that it was simply a problem by the startup script and my safari browser, which does not show properly the configuration page.
/etc/init.d/S99TVServer
- Code: Select All Code
#!/bin/sh
. /etc/sysconfig
case "$1" in
start)
echo "Starting tvserver..."
/usr/local/bin/lcd.sh > /dev/null 2>&1 &
if [ $DVBAPI = "yes" ]; then
/usr/local/bin/oscam > /dev/null 2>&1 &
fi
if [ $TVSERVER = "no" ]; then
if [ $VDR = "yes" ]; then
sleep 15
/usr/bin/initstartdvblast.sh &
fi
else
if [ $VDR = "yes" ]; then
sleep 18
/usr/bin/runvdr.sh start
else
sleep 18
/usr/bin/runtvheadend.sh start
fi
fi
;;
stop)
echo -n "Stopping tvserver..."
if [ $VDR = "yes" ]; then
/usr/bin/runvdr.sh stop
killall -9 runvdr.sh vdr vdradmind
else
/usr/bin/tvheadend.sh stop
killall -9 tvheadend.sh tvheadend
fi
;;
restart|reload)
"$0" stop
"$0" start
;;
*)
echo "Usage: $0 {start|stop|restart}"
exit 1
esac
exit $?
requests the DVBAPI setting from /etc/sysconfig
- Code: Select All Code
TZ="Europe/Vienna"
LC_ALL="de_DE.UTF-8"
INADYN="no"
PLUGINLIST="dvbapi xvdr streamdev-server vnsiserver4"
VDR_CHARSET_OVERRIDE=
DVBAPI="yes"
VDR="no"
TVSERVER="yes"
UseAdapter=0
WIFI="no"
i just changed the DVBAPI to yes.. and since my epg does not work fine, i'm trying around with the TZ settings atm..
now everything seems to run rly fine.. but i'm running into another problem.
after some time (about 2-3 months) the root partition gets out of space..
is there any way to show whats causing this? i think its the epg or something similar...
- Code: Select All Code
[root@moi bin]# df
Filesystem 1K-blocks Used Available Use% Mounted on
/dev/root 515072 442020 73052 86% /
tmpfs 515992 0 515992 0% /dev/shm
tmpfs 515992 16 515976 0% /tmp
/dev/sda1 31250032 21456 31228576 0% /mnt/sda1
that is what is looks right now... maybe i could remove unused binaries such as vdr?
has nobody run into the same problems?