Posts by anniman

    trying to add another omnikey on Linux pc with Ubuntu 13.04. when I setup the reader for the uk settings and insert the card it doesn't flash in the same manner as the other and crashes oscam 9568. when I do get it started it says in the log that the card system is not compatible even though it can tell me how much credit is on it.
    if I stick the card back in my linux box it works fine

    Now we will write a simple start up script so the client will start when the computer starts.


    sudo nano /etc/init.d/noip


    Copy and paste all the following lines (between the long ##### lines) into the file you have just started. (If you are using putty from within windows you can use ctrl-c to copy then in the putty terminal either right cick or use shift-ins to paste


    ################################################## #####
    #! /bin/sh
    case "$1" in
    start)
    echo "Starting noip2"
    /usr/local/bin/noip2
    ;;
    stop)
    echo -n "Shutting down noip2"
    for i in `noip2 -S 2>&1 | grep Process | awk '{print $2}' | tr -d ','`
    do
    noip2 -K $i
    done
    ;;
    *)
    echo "Usage: $0 {start|stop}"
    exit 1
    esac
    exit 0
    ################################################## #####


    Now exit and save. ctrl-x to exit and y to save.


    You should be able to test the startup scripts with


    sudo /etc/init.d/noip stop
    sudo /etc/init.d/noip start


    Now we reset the persmissions so only the root user (ie the system itself) will run the programs from within the start up procedure


    sudo chmod 700 /usr/local/bin/noip2
    sudo chown root:root /usr/local/bin/noip2
    sudo chmod 700 /etc/init.d/noip
    sudo chown root:root /etc/init.d/noip
    sudo chmod 700 /usr/local/etc/no-ip2.conf
    sudo chown root:root /usr/local/etc/no-ip2.conf


    Now we will add the the noip start script to the ubuntu startup process


    sudo nano /etc/rc.local


    In the line above "exit 0" add the following line


    /etc/init.d/noip start


    In order for the client to work you will need to open port 8245 through to the server. The way you do this depends on your modem/router. This is called port forwarding. If you need help with port forwarding go to: www.portforward.com



    Finally got it to work with one difference to the above, when we get to the part



    Now we will add the the noip start script to the ubuntu startup process


    sudo nano /etc/rc.local


    In the line above "exit 0" add the following line


    /etc/init.d/noip start


    it should read /etc/init.d/noip2 start

    I feel like i'm going round in circles here. I had to get a new router so got a netgear DGN2200v4, forwarded ports for no-ip and it all works apart from dcc. I cant ftp any of my boxes now. it connected but the window says ftp component not ready and trys to navigate to the /etc folder from some reason instead of root directory. whats going on?

    just tried both methods and still no luck. I bought a new router a netgear DGN220v4 and it doesn't even have it as an option in the dns even after a firmware upgrade

    I have built a Linux pc now to run oscam but cannot work out how to get noip2 to autostart on boot.
    can someone help with the script please for Ubuntu, I cant see a tutorial

    don't worry about people faking cards. if you use oscam alone to serve it has a reshare tab under the user section called uniq. it can be limited to one box or multi depending on ip. the second box or boxes get a fake cw, just a black screen to you. there is no longer the need to have cccam share your card. I don't use it just oscam alone.
    Oscam also shows the nimber of connections and number of ecms requested per minute.
    If your using 12.xx lts you will come across the same problem I have. it does not recognose your card reader every time. I am changing to 13.04 tonight to solve this multiple reader carry on

    yup got it now. I was getting confused as there are so many different threads telling you how to install differently in the Linux pc section and oscam sections. if I add another it will be device 1 and MHZ will be 450 and card MHZ 3150 for pc, is this correct?

    Linux pc x64 oscam 9566. omnikey identified as 004:003, it knows the cards in the slot and which type of card but I get this in the log
    setanta [pcsc] Wrong pcsc_reader index: 4
    2014/03/15 17:54:07 1BE2410 r setanta [pcsc] Cannot open device: 004:003
    where am I going wrong?