Seite 1 von 1
[GELÖST] - oscam autostart - no need of cccam. How to ?
Verfasst: Sa 28. Apr 2012, 13:59
von pukitheman
hi to all , I use ipc and I am very happy with how is work .
have one problem , I cand find the way to make my pc server runing like this :
after reboot of server, just oscam run without cccam- dont need cccam on my server, can somebody point me where can I find way to do this ?
thank's
Re: oscam autostart - no need of cccam. How to ?
Verfasst: Sa 28. Apr 2012, 14:39
von jensebub
hi,
perhaps use putty:
and deactivate the line where cccam starts (put the # before)
store with cntrl+o <enter> exit with cntrl+x <enter>
greetings
jensebub
Re: oscam autostart - no need of cccam. How to ?
Verfasst: Sa 28. Apr 2012, 14:59
von pukitheman
am use pytty :
i as
got this :
#!/bin/sh -e
#
# rc.local
#
# Zum Autostarten eines Emu's einfach "#" am Anfang der Zeile entfernen
OSCam starten
#/bin/oscam start &
#CCcam starten
/bin/cccam start &
#NewCS starten
#/bin/newcs start &
exit 0
I remove # before OSCam starten
ctrl+o >>> save
ctrl+x >>>exit
reboot server .
results :
start cron
start cccam
dont have good results with this .
Re: oscam autostart - no need of cccam. How to ?
Verfasst: Sa 28. Apr 2012, 15:07
von jensebub
so, make it like i said,
it has to look like that:
Code: Alles auswählen
#OSCam starten
/bin/oscam start &
#CCcam starten
#/bin/cccam start &
/EDIT next step you have to deactivate the cccam-watchdog and infophp in:
put # before every line with cccam like that
Code: Alles auswählen
#CCcam
#* * * * * root /var/emu/script/cccam-watchdog.sh #CCcam - Teste ob CCcam laeuft$
#30 4 * * * root /var/emu/script/cccam restart #CCcam - EMU Neustart (Taegli$
#* 5 * * * root /var/emu/script/cccam-cfgnl.sh #CCcam - Lade neue Konfigurati$
#CCcamInfoPHP (Update,Ping,Online)
#* * * * * www-data wget -q --spider http://localhost/ipc/infophp/cron_update.ph$
#58 * * * * www-data wget -q --spider http://localhost/ipc/infophp/cron_ping.php$
#59 * * * * www-data wget -q --spider http://localhost/ipc/infophp/cron_online.p$
Re: oscam autostart - no need of cccam. How to ?
Verfasst: Sa 28. Apr 2012, 15:18
von pukitheman
ok I put this :
#!/bin/sh -e
#
# rc.local
#
# Zum Autostarten eines Emu's einfach "#" am Anfang der Zeile entfernen
#OSCam starten
/bin/oscam start &
#CCcam starten
#/bin/cccam start &
#NewCS starten
#/bin/newcs start &
exit 0
results :
start cron
start oscam
start cccam - how to stop cccam dont need this !
what is wrong ?
/EDIT yes is work , with edit part of you post ,
thank's very musch.
regards