oscam 18-49 not appearing

hibees09

Senior Member
Messages
175
i have blackhole image and have downloaded oscam ymod 18-49 but it dont appear in my cam manager?

any ideas
 

georgeflu

Senior Member
Messages
485
from where you downloaded it, and how you installed it?
is it the right one for BH or its just a ymodt49?
 

georgeflu

Senior Member
Messages
485
mmm,i think i found it. there is a little mistake in the build,and the script is going to the usr/script directory which is wrong. it must go to the usr/camscript directory.
to fix it,you must go from ftp to the usr/script dir. and take to your pc the file "Ncam_oscam-ymodv18-49.sh" than copy it to the usr/camscript dir. and change attributes to "755". do a restart and should be ok.(the above if you already installed t49 and it does not appears in cam manager in black hole image)
 
Last edited:

georgeflu

Senior Member
Messages
485
yes,you are right,because there are more problems in the name of the camscript and the bin.
go to the usr/bin directory and find "oscamymod..." file and rename it to "oscam-ymodv18-49"
than go to the usr/camscript directory and find "ncam_oscamymod..." and rename it to
"Ncam_oscam-ymodv18-49.sh" both files must have atributes 755.
finaly to an edit to "Ncam_oscam-ymodv18-49.sh" and delete everything inside it and copy this

Code:
#!/bin/sh

CAMNAME="oscam-ymodv18-49"

remove_tmp () {
	rm -rf /tmp/*.info* /tmp/*.tmp*
}

case "$1" in
	start)
	echo "[SCRIPT] $1: $CAMNAME"
	remove_tmp
	/usr/bin/oscam-ymodv18-49 -b &
	sleep 2
	;;
	stop)
	echo "[SCRIPT] $1: $CAMNAME"
	killall -9  oscam-ymodv18-49 2>/dev/null
	sleep 1
	remove_tmp
	;;
	*)
	$0 stop
	exit 0
	;;
esac

exit 0
save and restart.

 
Last edited:

just72

Registered
Messages
2
hi mate I have same problems with EDG images ,not working ,if you could tell whats wrong ,please thanks
 

georgeflu

Senior Member
Messages
485
my friend there isn't a modify for nemesis. the best way to do it,is to download a simple oscam version for nemesis,and than change the oscam_bin in usr/bin directory with the ymod
 
Top