Oscam installation Sifteam Extreme E2

carrpet

Registered
Messages
183
Hi Guys,

I have finally gone back to Enigma 2 based images. The Sifteam extreme seems great. However the E2 images will not allow recording one scrambled channel while watching another while using Mgcamd 1.35 (if someone has made a breakthrugh on this I would be delighted to know !).

There is a soulution which works which is Oscam, which I have tested out on the latest PKT image. I find the Sifteam Extreme image much more stable (no green screens so far!).

As the Sifteam E2 URL2 does not seem to be working at the moment (again if there is a breakthrough here I would be delighted to hear of it !) I want to manually install and configure Oscam. Unfortunately the PKT image installs Oscam in very different folders to the Sifteam E2 image.

So can anyone help me with Oscam installation on the Sifteam E2 image. I am using Oscam to connect to a Newcs server only so the configuration should be really easy. However Oscam crashes when I select it and tells me to look at my configuration.

I have the binary file in

/var/etc/emud

The config files in

/var/etc/emud/conf

Help please and assuming I get it working I will post a full how to because there must be other people out there in the same predicament.
 

lucsch

Registered
Messages
75
This is the directory structure you have to make

/var/etc/emud/emu/oscam/conf

in /var/etc/emud/emu/oscam you have the files:

oscam (the binary)

emulator.conf
name = oscam
version = 1
description = oscam emulator
process_to_monitor = oscam
start_script = start.sh
stop_script = stop.sh
stop_forced_script = stop_forced.sh
stop_max_delay_time = 5
ecm_info_parser = none

start.sh

#!/bin/sh
# enviroment variables:
# CONFIG_DIRECTORY directory where configuration is located
CONFIG_DIRECTORY=/var/etc/emud/emu/oscam
start-stop-daemon -S -x $CONFIG_DIRECTORY/oscam -- -c $CONFIG_DIRECTORY/conf &

stop.sh

#!/bin/sh
# enviroment variables:
# CONFIG_DIRECTORY directory where configuration is located
CONFIG_DIRECTORY=/var/etc/emud/emu/oscam
start-stop-daemon -K -x $CONFIG_DIRECTORY/oscam

stop_forced.sh

#!/bin/sh
# enviroment variables:
# CONFIG_DIRECTORY directory where configuration is located
CONFIG_DIRECTORY=/var/etc/emud/emu/oscam
start-stop-daemon -K -s 9 -x $CONFIG_DIRECTORY/oscam

do a chmod +x on these files

in the conf directory you place the oscam config files.
 

lucsch

Registered
Messages
75
I am not shure. Just try. if it gives problems you could remove those ^M on the box with vi.
 
Last edited:
Top