Hallo zusammen,
ich habe plötzlich das Problem, dass OSCam bei mir mehrmals startet obwohl ex nur 1x in einer Version installiert ist:
In dem Ordner "/usr/bin/" ist nur die "oscam_1.20-unstable-11716" vorhanden und in dem Ordner "/usr/script/" auch nur 1x das Script "oscam_1.20-unstable-11716_cam.sh":
Ich habe OSCam schon komplett deinstalliert und erneut installiert, die gesamte VU+ rebootet, alles hat nicht funktioniert. Hat jemand eine Idee was das sein kann? Installiert ist aktuell VTi 15.0.02.
Danke schon mal.
ich habe plötzlich das Problem, dass OSCam bei mir mehrmals startet obwohl ex nur 1x in einer Version installiert ist:
Du musst Regestriert sein, um das angehängte Bild zusehen.
Code:
#!/bin/sh
########################################
###### Powered by Vu+ Image Team ######
## http://www.vuplus-support.org ##
########################################
CAMNAME="OScam 1.20 rev: 11716"
remove_tmp () {
rm -rf /tmp/cainfo.* /tmp/camd.* /tmp/sc.* /tmp/*.info* /tmp/*.tmp* /tmp/oscam*
[ -e /tmp/.oscam ] && rm -rf /tmp/.oscam
[ -e /tmp/.emu.info ] && rm -rf /tmp/.emu.info
[ -e /tmp/oscam.mem ] && rm -rf /tmp/oscam.mem
}
case "$1" in
start)
echo "[SCRIPT] $1: $CAMNAME"
remove_tmp
touch /tmp/.emu.info
echo "OScam 1.20 rev: 11716" > /tmp/.emu.info
/usr/bin/oscam_1.20-unstable-11716 -b -r 2 -c /etc/tuxbox/config
;;
stop)
echo "[SCRIPT] $1: $CAMNAME"
kill `pidof oscam_1.20-unstable-11716`
remove_tmp
;;
restart)
$0 stop
sleep 2
$0 start
exit
;;
*)
$0 stop
exit 0
;;
esac
exit 0
Ich habe OSCam schon komplett deinstalliert und erneut installiert, die gesamte VU+ rebootet, alles hat nicht funktioniert. Hat jemand eine Idee was das sein kann? Installiert ist aktuell VTi 15.0.02.
Danke schon mal.
Anhänge
Du musst angemeldet sein, um die Anhangsliste zu sehen.
Zuletzt bearbeitet von einem Moderator: