Nedan guide hjälpte mig men du får trixa lite till för att få det till 100% fixat...
How to integrate oscam in Pli:
1. upload oscam binary in /var/bin (chmod 0755)
2. create empty file /etc/plimgr/cardservers/oscam
# touch /etc/plimgr/cardservers/oscam
3. create script /etc/plimgr/scripts/oscam to start oscam (chmod 0755)
#!/bin/sh
case "$1" in
start)
echo "Starting oscam"
/usr/bin/oscam -b -c /usr/config
;;
stop)
echo "Stopping oscam"
killall oscam 2>/dev/null
;;
*)
$0 stop
exit 1
;;
esac
exit 0
4. Place config files in /var/tuxbox/config (oscam.conf, oscam.server, oscam.user ..)
5. Select oscam from Softcam setup -> cardserver




Svara med citat
