Ncam Emu by RAED
-
- NCam RAED
- fairbird
- Thread is marked as Resolved.
There are 1,955 replies in this Thread which was already clicked 709,235 times. The last Post () by joaoccbernardo.
-
-
I didn’t install the Gemini feed; I only installed the DreamNetCast plugin to use YouTube
I’ll delete it then, install the emulator, and then reinstall it again
-
Code
Display MoreIgn http://dreambox4u.com ./ Translation-en Reading package lists... Done (Reading database ... 19586 files and directories currently installed.) Preparing to unpack .../enigma2-plugin-softcams-ncam-osdreambox_V15.5-r0.deb ... OE2.5 IMAGES: libssl.1.0.0 OE2.5 IMAGES: libcrypto.1.0.0 OE2.5 IMAGES: glibc 2.23 Unpacking enigma2-plugin-softcams-ncam-osdreambox (15.5-r0) over (15.5-r0) ... Removing All 'Ncam' Files .... ******************************************* * Removed Finished * * * * Need To Restart Enigma2 * * * * Patched and compile By RAED * ******************************************* Setting up enigma2-plugin-softcams-ncam-osdreambox (15.5-r0) ... :Your Device IS ARM processor ... OpenTS/Ts image [ All Config Files found ] ------------------------------------------------------- * Ncam Config & Softcam files in [/etc/tuxbox/config] * ------------------------------------------------------- ******************************************* * Install Finished * * * * Need To Restart Enigma2 * * * * Patched and compile By RAED * ******************************************* Reading package lists... Done Building dependency tree Reading state information... Done 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. root@dm920:~# -
Display MoreDisplay MoreDisplay More
Tsimage 6 By Radoune
script
/etc/enigma2/camd_ncam.json #Flase
/usr/script/cam /Ncam.sh #True
If u use geminicamswitch u need json file
etc/enigma2/camd_ncam.json
If u use TSsoftcam manager
usr/script/cam /Ncam.sh
I know that, but I am using Softcam Manager.
Is normal fairbird has an auto detect script so if not found the exact args thath it need it will consider the image as Gemini image
-
Display More
I didn’t install the Gemini feed; I only installed the DreamNetCast plugin to use YouTube
I’ll delete it then, install the emulator, and then reinstall it again
U can't install dreamnetcast without Gemini local
-
-
Display MoreDisplay More
I didn’t install the Gemini feed; I only installed the DreamNetCast plugin to use YouTube
I’ll delete it then, install the emulator, and then reinstall it again
U can't install dreamnetcast without Gemini local
Everything has been done and it’s all working fine now, thanks in advance.
-
My friend, the issue is resolved now, and the reason is clear
you installed the emulator before installing the Gemini feed, that’s why it appeared for you
-
Code
Display MoreIgn http://dreambox4u.com ./ Translation-en Reading package lists... Done (Reading database ... 19586 files and directories currently installed.) Preparing to unpack .../enigma2-plugin-softcams-ncam-osdreambox_V15.5-r0.deb ... OE2.5 IMAGES: libssl.1.0.0 OE2.5 IMAGES: libcrypto.1.0.0 OE2.5 IMAGES: glibc 2.23 Unpacking enigma2-plugin-softcams-ncam-osdreambox (15.5-r0) over (15.5-r0) ... Removing All 'Ncam' Files .... ******************************************* * Removed Finished * * * * Need To Restart Enigma2 * * * * Patched and compile By RAED * ******************************************* Setting up enigma2-plugin-softcams-ncam-osdreambox (15.5-r0) ... :Your Device IS ARM processor ... OpenTS/Ts image [ All Config Files found ] ------------------------------------------------------- * Ncam Config & Softcam files in [/etc/tuxbox/config] * ------------------------------------------------------- ******************************************* * Install Finished * * * * Need To Restart Enigma2 * * * * Patched and compile By RAED * ******************************************* Reading package lists... Done Building dependency tree Reading state information... Done 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. root@dm920:~#
creat new shell script Ncam.shBash
Display More#!/bin/sh OSD="Ncam 15.5" BIN="/usr/bin/ncam" CFG="/etc/tuxbox/config" PID="/var/run/ncam.pid" # -------------------------------- is_running() { [ -f "$PID" ] && kill -0 "$(cat "$PID")" 2>/dev/null && return 0 pidof "$(basename "$BIN")" >/dev/null 2>&1 } cam_clean() { rm -f /tmp/*.info* /tmp/.ncam /tmp/*.pid } cam_up() { [ -x "$BIN" ] || { echo "Binary not found: $BIN"; exit 1; } "$BIN" -b -c "$CFG" >/dev/null 2>&1 & echo $! > "$PID" } cam_down() { if [ -f "$PID" ]; then kill "$(cat "$PID")" 2>/dev/null rm -f "$PID" sleep 1 fi killall -q "$(basename "$BIN")" 2>/dev/null cam_clean } case "$1" in cam_up) cam_up ;; cam_down) cam_down ;; cam_res) cam_down; sleep 1; cam_up ;; *) if is_running; then cam_down; else cam_up; fi ;; esac exit 0 -
Is it possible to have the files located inside the ncam folder...dvbapi - provid - srvid2.
Thanks
-
fairbird
in the script you check gp4 before any other img and thats why the instllaton get gp4 instead of Tsimage
it will be better if gp3 and gp4 are last check as u know gp4 can be installed on any image so it will be confused always if its checked firstCode
Display Moreif [ -r $DreamOSat ]; then echo "DreamOSat camManager" cp -rf $TMPDIR/DreamOSat/* / > /dev/null 2>&1 cp -rf $BINPATH /usr/bin > /dev/null 2>&1 elif [ -e $GP3 ]; then echo "GP3 image" cp -rf $TMPDIR/GP3/* / > /dev/null 2>&1 cp -rf $BINPATH /usr/bin/ > /dev/null 2>&1 elif [ -f $GP4 ]; then echo "GP4 image" cp -rf $TMPDIR/GP4/* / > /dev/null 2>&1 cp -rf $BINPATH /usr/bin > /dev/null 2>&1 else if grep -qs -i "Power-Sat" /etc/issue; then echo "PowerSat image" cp -rf $TMPDIR/PowerSat/* / > /dev/null 2>&1 cp -rf $BINPATH /usr/bin/ > /dev/null 2>&1 elif grep -qs -i "OoZooN" /etc/issue.net; then echo "OoZooN image" if [ ! -r /usr/camd ]; then mkdir -p /usr/camd > /dev/null 2>&1 fi cp -rf $TMPDIR/oozoon/* / > /dev/null 2>&1 cp -rf $BINPATH /usr/camd/ > /dev/null 2>&1 elif [ -r $PETERPAN ]; then echo "PeterPan image" cp -rf $TMPDIR/PeterPan/* / > /dev/null 2>&1 cp -rf $BINPATH /usr/bin/ > /dev/null 2>&1 echo "0*ncam_cam.pp* Ncam *" >>/usr/ppteam/.emulist elif [ -r $VTI ]; then echo "VTI image" cp -rf $TMPDIR/vti/* / > /dev/null 2>&1 cp -rf $BINPATH /usr/bin/ > /dev/null 2>&1 elif [ -r $TSIMAGE ]; then echo "OpenTS/Ts image" if [ ! -r /usr/bin/cam ]; then mkdir -p /usr/bin/cam > /dev/null 2>&1 fi cp -rf $TMPDIR/ts/* / > /dev/null 2>&1 cp -rf $BINPATH /usr/bin/cam/ > /dev/null 2>&1 elif [ -r $NEWNIGMA2 ]; then echo "newnigma2 image" cp -rf $TMPDIR/newnigma2/* / > /dev/null 2>&1 cp -rf $BINPATH /usr/bin/ > /dev/null 2>&1 elif [ -r $MERLIN ]; then echo "Merlin4 image" if [ ! -r /usr/bin/cam ]; then mkdir -p /usr/bin/cam > /dev/null 2>&1 fi cp -rf $TMPDIR/Merlin4/* / > /dev/null 2>&1 cp -rf $BINPATH /usr/bin/cam/ > /dev/null 2>&1 elif [ -d $DreamElite1 ]; then echo "Dream-Elite image" if [ ! -d /var/bin ]; then ln -sfn /usr/bin /var/bin fi cp -rf $TMPDIR/dreamelite/* / > /dev/null 2>&1 cp -rf $BINPATH /usr/bin/ > /dev/null 2>&1 touch /etc/DExtra chmod -R 755 /etc/DExtra elif [ -d $DreamElite2 ]; then echo "Dream-Elite image" if [ ! -e /etc/enigma2/EliteSoftcam/ ]; then /bin/mkdir -p /etc/enigma2/EliteSoftcam 2> /dev/null fi if [ ! -e /usr/keys/ ]; then /bin/mkdir -p /usr/keys 2> /dev/null fi if [ ! -e /var/bin/ ]; then ln -s /usr/bin/ /var/bin 2> /dev/null fi if [ ! -e /var/etc/ ]; then ln -s /etc/ /var/etc 2> /dev/null fi if [ ! -e /var/keys/ ]; then ln -s /usr/keys/ /var/keys 2> /dev/null fi if [ ! -e /var/tuxbox/ ]; then ln -s /etc/tuxbox/ /var/tuxbox 2> /dev/null fi cp -rf $TMPDIR/dreamelite2/* / > /dev/null 2>&1 cp -rf $BINPATH /usr/bin/ > /dev/null 2>&1 elif [ -r $TDW ]; then echo "TDW image" if [ ! -r /usr/bin/cam ]; then mkdir -p /usr/bin/cam > /dev/null 2>&1 fi cp -rf $TMPDIR/TDW/* / > /dev/null 2>&1 cp -rf $BINPATH /usr/bin/cam/ > /dev/null 2>&1 elif [ -r $SATLODGE ]; then echo " Satlodge image" cp -rf $TMPDIR/satlodge/* / > /dev/null 2>&1 cp -rf $BINPATH /usr/bin/ > /dev/null 2>&1 elif [ -r $Demoni ]; then echo "DMS-Demoni image" cp -rf $TMPDIR/dddemon/* / > /dev/null 2>&1 cp -rf $BINPATH /usr/bin > /dev/null 2>&1 elif [ -r $EmulatorManager ]; then echo "EmulatorManager image" if [ ! -r /usr/bin/cam ]; then mkdir -p /usr/bin/cam > /dev/null 2>&1 fi cp -rf $TMPDIR/EmulatorManager/* / > /dev/null 2>&1 cp -rf $BINPATH /usr/bin/cam/ > /dev/null 2>&1 elif [ -f $SysCC ]; then echo " SysCC Plugin" if [ ! -r /usr/bin/cam ]; then mkdir -p /usr/bin/cam > /dev/null 2>&1 fi cp -rf $TMPDIR/SysCC/* / > /dev/null 2>&1 cp -rf $BINPATH /usr/bin/cam/ > /dev/null 2>&1 else -
I can not Add gp4 in the last of list before long time I have got some issue with that method I can not remember.
So I have fixed with
Code
Display Moreif [ -r $DreamOSat ]; then echo "DreamOSat camManager" cp -rf $TMPDIR/DreamOSat/* / > /dev/null 2>&1 cp -rf $BINPATH /usr/bin > /dev/null 2>&1 elif [ -e $GP3 ]; then echo "GP3 image" cp -rf $TMPDIR/GP3/* / > /dev/null 2>&1 cp -rf $BINPATH /usr/bin/ > /dev/null 2>&1 elif [ -f $GP4 ]; then echo "GP4 image" cp -rf $TMPDIR/GP4/* / > /dev/null 2>&1 cp -rf $BINPATH /usr/bin > /dev/null 2>&1Then use
Then
Code
Display Moreif grep -qs -i "Power-Sat" /etc/issue; then echo "PowerSat image" cp -rf $TMPDIR/PowerSat/* / > /dev/null 2>&1 cp -rf $BINPATH /usr/bin/ > /dev/null 2>&1 elif grep -qs -i "OoZooN" /etc/issue.net; then echo "OoZooN image" if [ ! -r /usr/camd ]; then mkdir -p /usr/camd > /dev/null 2>&1 fi cp -rf $TMPDIR/oozoon/* / > /dev/null 2>&1 cp -rf $BINPATH /usr/camd/ > /dev/null 2>&1Another thing my brother .. this is not my script problem.
This is a problem for users who want to install everything on a single image and are not satisfied with the original image panel...
So I can not solve this issue ...
-
Update ...
Ncam V15.6
Code
Display More- Update free server (From SERVER0 to SERVER9 - Several bug fixes * Display decrypted answer from Nagravision Merlin changerom_hangshake command. * Add support nano 96/35 and nano 96/32 for Viaccess provider ID 030F00 ECM * Improved handling of error 6F01 cherry-pick > https://git.streamboard.tv/common/oscam/-/commit/550b1299d21049603b81ff90f1e4c82667a373dc - Rearrange Irdeto code in order to make it more readable. cherry-pick > https://git.streamboard.tv/common/oscam/-/commit/6dc541847a048b8d7ba70325515d08766762d852 - Fix bug where EMM stop working after Reload Readers button is pressed cherry-pick > https://git.streamboard.tv/common/oscam/-/commit/6dc541847a048b8d7ba70325515d08766762d852 - Increase number of characters allowed on 'httpallowed' config cherry-pick > https://git.streamboard.tv/common/oscam/-/commit/fef305afb082771cb26568a7e80b388010ccd28c - New method implemented for NDS tiers startdate and tiers expiredate (patch provided by @ohmza) * All tiers startdate/expiredate basemonth and baseyear are now configurable separately via webif. This means that users can config tiers startdate basemonth and baseyear different from tiers expiredate basemonth and baseyear (Sky DE V15 card requires this as of March 2025). * Tiers startdate basemonth and baseyear are not required to be configured if the card doesn't have tiers startdate data on card answer. * From this revision onwards, we don't need to add any additional new NDS card ATR when new NDS card has emerged. cherry-pick > https://git.streamboard.tv/common/oscam/-/commit/ba95185b2d4e951160427e789b0cbbd9252782dd - Use drop down box for Videoguard's startdate and expiredate basemonth on webif config cherry-pick > https://git.streamboard.tv/common/oscam/-/commit/3193acc32776fb26a2be2b2a15f17a2a1b52a36b - signing: rework signature validation * binary file lookup in PATH (for edge cases) * show binary filename in oscam info and log * fix potential memory leaks * code rework and optimization * handle OpenSSL 3.0+ deprecations cherry-pick > https://git.streamboard.tv/common/oscam/-/commit/349ee1094622b8408737291e4dafc5a87794052b - IRDETO: remove needsemmfirst since every card needs emm if they cannot descramble cherry-pick > https://git.streamboard.tv/common/oscam/-/commit/dd61eeee24748b34b5485e4b99f957973b23eefe - Fix build warnings on BananaPi (Co-author: @Karl Dall) cherry-pick > https://git.streamboard.tv/common/oscam/-/commit/7aa7af863a6aca9f11bc1e58cf1906ecee244ef3 -
-
-
You need to download ipk file and installed (look on first post)
Do not send files manually and then especially the bin files of ncam. Then you says doesn't work !
Any error happens with installation make screenshot and upload it here.
-
Hi sorry if im doing this in wrong place but couls anyone help please i have a zgemma h7s running latest openvix image i have an older ncam working but everytime i try to install newer one doesnt work ie cam wont start ive installed ipk file no good ive even replaced ncam file itsels replaced with arm file and renamed to same as older one still no good
-
-
thanks for reply ill try in morning
-
Hi sorry if im doing this in wrong place but couls anyone help please i have a zgemma h7s running latest openvix image i have an older ncam working but everytime i try to install newer one doesnt work ie cam wont start ive installed ipk file no good ive even replaced ncam file itsels replaced with arm file and renamed to same as older one still no good
AS I said hunder times .. Do not send bin file manually !
Any one want me support should be only install ipk from telnet and If got any error send the screenshot from telnet.
An if ncam does not work look on /tmp if you find the log of ncam then that proof the ncam works and no problem the issue from other things.
Your resource for Ncam softcam.
![]()
Participate now!
Don’t have an account yet? Register yourself now and be a part of our community!
