Posts by rahul08

    hello master G
    in Merlin 3 config folder not present in /etc/tuxbox.
    so I did some experiment.
    I Send oscam to /usr/bin folder. Change permissions to 755
    send oscam.conf >oscam.user & SoftCam.key file to etc folder. Changed permission to 644
    make a oscam.sh file and send it to usr>script>cam. permission 755
    script is


    #!/bin/sh
    CAM="oscam"
    OSD="OSCam r11273"
    PID=`pidof $CAM`
    Action=$1


    cam_clean () {
    rm -rf /tmp/*.info* /tmp/.oscam /tmp/*.pid
    }


    cam_handle () {
    if test -z "${PID}" ; then
    cam_up;
    else
    cam_down;
    fi;
    }


    cam_down () {
    killall -9 $CAM
    sleep 2
    cam_clean
    }


    cam_up () {
    /usr/bin/cam/$CAM -c /etc
    }


    if test "$Action" = "cam_startup" ; then
    if test -z "${PID}" ; then
    cam_down
    cam_up
    else
    echo "$CAM already running, exiting..."
    fi
    elif test "$Action" = "cam_res" ; then
    cam_down
    cam_up
    elif test "$Action" = "cam_down" ; then
    cam_down
    elif test "$Action" = "cam_up" ; then
    cam_up
    else
    cam_handle
    fi


    exit 0



    then I start Oscam
    it working.I can watch powervu channels
    two file has been automatically created by system in etc folder
    oscam.ccache & oscam.srvid2


    but only one problem is same sid problem
    powervu channels having same sid are not opening.if I keep one channels key in SoftCam.key then it works.
    Please solve my problem
    Thanks


    hello master G
    I am new in this forum.This forum is very good.This forum gives very good information.
    I recently bought original DM7020HD
    Image installed merlin 3
    will this process work on my stb ?
    thanks