Hi.
Is your Oscam 11719 running ? Are your DVB channels decoded correctly ?
What does the startup cmd-line for your Oscam look like ? You can find out with the following function, just copy the code using CTRL+C , and then paste it into PuTTY by right-clicking in the terminal window... and then just run it:
OSCAM_BIN_FNAME="oscam"
if ps --version 2>&1 | grep -q -i "busybox"; then
ps | grep $OSCAM_BIN_FNAME | grep -v grep | head -n 1 | grep -o '/.*$' # feature-poor `ps` command from BusyBox (for example in OpenPLi image)
else
ps -f --no-headers -C $OSCAM_BIN_FNAME | head -n 1 | grep -o '/.*$' # full-featured `ps` command from Linux OS (for example in OpenATV image)
fi
If necessary, also modify the name of the Oscam binary file (in the variable OSCAM_BIN_FNAME at the beginning of the algorithm).
Isn't there a modified directory path to the configuration files - in the starting cmd-line ? Because in that case, you have to move your configuration files to the appropriate directory. The forced change of the configuration directory can also be detected in the startup "init.d" script, which can be found in the directory /etc/init.d/softcam.....). Look for the "-c <dir>" or "--config-dir <dir>" parameter there.
Try running your Oscam in the terminal as well and watch what happens:
OSCAM_BIN_FNAME="oscam"
killall -9 $OSCAM_BIN_FNAME
/usr/bin/$OSCAM_BIN_FNAME
Edited by s3n0, 10 June 2023 - 07:32.