Welcome!

Welcome to Satlover forums, full of great people, ideas and excitement.

Please register if you would like to take part. link..

Register Now

Alert: Don't Use Hotmail Email Accounts for registration

Collapse

Before Access to all Forums and Trial accounts you must need to activate your account Email address

smargo add help ubuntu

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • birdman99
    Junior Member
    • Jan 2012
    • 20

    smargo add help ubuntu

    Could someone walk me through how to add a smargo reader with a jsc card to a ubuntu linux 64bit server running 12.04 ubuntu.
    already runing omnikey.
  • bonilla
    Board Senior Member
    • Aug 2012
    • 251

    #2
    Re: smargo add help ubuntu

    Originally posted by birdman99
    Could someone walk me through how to add a smargo reader with a jsc card to a ubuntu linux 64bit server running 12.04 ubuntu.
    already runing omnikey.
    Hello birdman99 ,

    Presuming the installation of Ubuntu was done without any error/problem ,you have to proceed ,for example,to the installation of oscam (I don't know if you have installed it yet).
    I recommand Oscam because it includes the usb support for your smargo readers with your jsc card and also enables the WEBIF (web interface).

    Code:
    sudo apt-get install openssl
    sudo apt-get install libssl-dev
    sudo apt-get install cmake build-essential
    sudo apt-get install gcc g++ cmake libpcsclite1 libpcsclite-dev subversion
    cd /usr/src
    sudo wget http://cdnetworks-us-2.dl.sourceforg...-1.0.8.tar.bz2 
    sudo tar xjvf libusb-1.0.8.tar.bz2
    cd libusb-1.0.8
    sudo ./configure --enable-shared=no
    sudo make
    sudo make install
    cd /usr/src
    sudo svn co http://streamboard.gmc.to/svn/oscam/trunk  oscam
    cd oscam
    sudo mkdir build
    cd build
    sudo cmake -DWEBIF=1 ..
    sudo make
    Then you have to copy oscam to /bin and begin the setup of the config files.

    Code:
    sudo cp oscam /bin/oscam
    sudo pico /usr/local/etc/oscam.conf

    Code:
    [global]
    nice	 = -1
    WaitForCards = 1
    pidfile	 = /var/run/oscam.pid
    logfile	 = /var/log/oscam.log
    usrfile	 = /var/log/oscamuser.log
    cwlogdir = /var/log/cw
    maxlogsize = 10000
    
    [newcamd]
    port = 10000@096C:000000
    key = 0102030405060708091011121314
    
    [webif]
    httpport = 8888
    httpuser = user
    httppwd = pass
    httprefresh = 0
    httpallowed = 127.0.0.1,192.168.0.1-192.168.0.254
    httphideidleclients = 0
    httpreadonly = 0
    And then
    Code:
    sudo pico /usr/local/etc/oscam.server
    For your smargo reader plugged in your USB port(you can identify the device by running lsusb and changing 003:002 to what suits your system)
    Code:
    [reader]
    label =Jsc
    protocol =SmartReader
    detect =CD
    group =1
    emmcache =1,1,2
    ecmcache =1
    device =003:002
    caid =0XXC
    boxid=****** ## (to generate this, take your box serial number, drop the last digit and convert to HEX)
    Tell me if it suits to you and if you need help
    If you like my post, please don't hesitate to click on "Thanks"button. Thank you

    Comment

    Working...