Jump to content


Photo

CCcam - Installation


  • Please log in to reply
4 replies to this topic

#1 wysiwye

  • Member
  • 9 posts

0
Neutral

Posted 15 April 2012 - 09:48

Da dieses Softcam nicht auf dem Feed liegt, habe ich es von Hand installiert. Leider wird es nicht unter "Menü -> Einstellungen -> CI / Softcam Einstellungen" zum Auswählen angezeigt. Die Option "Softcam auswählen" zeigt keine Reaktion, hingegen startet "Neustart Softcam" CCcam neu.

Derzeit starte ich daher das Softcam stets manuell bzw. lasse es durch einen entsprechenden Eintrag in /etc/init.d beim Booten starten.

Wohin muss das Startscript, damit es zur Auswahl im Konfigurationsmenü angezeigt wird? Oder muss das CCcam-Startscript, das ich in /usr/script hinterlegt habe, einen bestimmten Namen tragen?

LG
wysiwye

Re: CCcam - Installation #2 wysiwye

  • Member
  • 9 posts

0
Neutral

Posted 15 April 2012 - 13:56

Alle muss man selber machen. ;-)

Im englischsprachigen Teil konnte ich das Problem klären.

Es reicht nicht, die CCcam Dateien zu installieren, für PLi wird ein spezielles Startscript benötigt, das nach /etc/init.d gehört. Ohne dieses Script wird in der Softcam-Verwaltung das CCcam nicht angezeigt.

Re: CCcam - Installation #3 Pedro_Newbie

  • Senior Member
  • 4,631 posts

+225
Excellent

Posted 15 April 2012 - 14:31

If you install the CCcam package from pli all is included. The file which is placed in etc/init.d is Softcam.CCcam and contains this script
#!/bin/sh
case "$1" in
start)
	ulimit -s 1024
	exec start-stop-daemon -S -x /usr/bin/CCcam
	;;
stop)
	exec start-stop-daemon -K -R 2 -x /usr/bin/CCcam
	;;
restart|reload)
	$0 stop
	sleep 1
	$0 start
	;;
version)
	echo "2.3.0"
	;;
info)
	echo "CCcam 2.3.0"
	;;
*)
	echo "Usage: $0 start|stop|restart"
	exit 1
	;;
esac
exit 0

Attached Files



Re: CCcam - Installation #4 mgcom

  • Member
  • 1 posts

0
Neutral

Posted 7 July 2012 - 21:15

Hi, just to understand better. I have installed the Enigma softcam cccam plugin from above and created a Softcam.CCcam with the text above and put it under etc/initd but nothing happended. What did I do wrong? thanks

Re: CCcam - Installation #5 Pedro_Newbie

  • Senior Member
  • 4,631 posts

+225
Excellent

Posted 7 July 2012 - 22:33

If you installed the plugin as attached in post 3 you shouldn't have to create the script file, it is installed by the plugin. If you manually create the script the wrong attribute is set. The attribute should be 755
At installation all is done automatic and the CCcam softcam should be made default and should start within about 10-15 seconds.


1 user(s) are reading this topic

0 members, 1 guests, 0 anonymous users