I think there is something wrong with oscam-emu startup script because I have experienced the same problem on ET9000 and HD51.
The oscam process simply disappears and does not re-appear using any simple method like:
- LONG BLUE - softcam restart,
- GUI restart,
- Box restart.
None of it helps. The only thing that helps is issuing the following command via telnet:
root@hd51:~# /usr/bin/oscam-emu --config-dir /etc/tuxbox/config/oscam-emu --daemon --pidfile /tmp/oscam-emu.pid --restart 2 --utf8 WARNING: Web interface UTF-8 mode enabled. Carefully read documentation as bugs may arise. root@hd51:~#
This brings oscam-emu process back.
My softcam.oscam-emu file looks like this:
#!/bin/sh case "$1" in start) ulimit -s 1024 /usr/bin/oscam-emu --config-dir /etc/tuxbox/config/oscam-emu --daemon --pidfile /tmp/oscam-emu.pid --restart 2 --utf8 ;; stop) kill `cat /tmp/oscam-emu.pid` 2> /dev/null ;; restart|reload) $0 stop sleep 1 $0 start ;; version) echo "svn11391" ;; info) echo "oscam-emu svn11391" ;; *) echo "Usage: $0 start|stop|restart" exit 1 ;; esac exit 0
What could be wrong?