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

no or unknown card inserted on (smargo+ubuntu)

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • dm800pvr
    Junior Member
    • Nov 2011
    • 10

    no or unknown card inserted on (smargo+ubuntu)

    Dear Members,

    I have JSC with original smargo+ installed and connected to a Linux ubuntu 3.0.0-12-generic
    My smart reader flashed to 1.7 latest firmware and mode:auto , Kernel normal
    installed cccam version is 2.2.1 (tested with no joy on 2.1.3 before)

    cccam start return this error:
    # cccam -d
    Pidfile allready found, Removing old pidfile
    Pidfile allready found, Removing old pidfile
    [SCRIPT] stop: CCcam Server
    kill: 63: Usage: kill [-s sigspec | -signum | -sigspec] [pid | job]... or
    kill -l [exitstatus]

    how ever I can easily stop it starting it is a real pain it may start after 3-4 times but after ubuntu reboot started without any problem!
    Also entitlements returns:
    card reader /dev/ttyUSB0
    no or unknown card inserted

    # lsusb
    Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
    Bus 002 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
    Bus 003 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
    Bus 004 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
    Bus 005 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
    Bus 006 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
    Bus 007 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
    Bus 008 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
    Bus 003 Device 003: ID 0403:6001 Future Technology Devices International, Ltd FT232 USB-Serial (UART) IC
    Bus 006 Device 002: ID 09da:055f A4 Tech Co., Ltd

    I see some guys with the same issue here:


    but as the result of lsusb is not the same and also I have no VT and VT-D in m,y asus bios so it should be another problem!

    brltty is also removed


    So I can't find anyway to start reading my reader please help
    multics and cccam config is also ok and client get NOK error in multics panel

    ccam config:
    SERIAL READER : /dev/ttyUSB0
    TRY ALL CHIDS : /dev/ttyUSB0
    SMARTCARD CLOCK FREQUENCY:/dev/ttyUSB0 8000000
    CAMKEY: /dev/ttyUSB0 00 00 00 00 00 00 00 00 00
    CAMDATA: /dev/ttyUSB0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 0

    Please help
  • vimmers
    Experienced Board Member
    • Jun 2010
    • 1188

    #2
    Re: no or unknown card inserted on (smargo+ubuntu)

    i found this also on linuxsat
    #!/bin/sh
    # Script to cleanup log files
    # Originally written by: Youknowhoo (R.I.P) scripts combined by A.

    OWNER=******
    TARGETDIR_1=/tmp
    TARGETDIR_2=/var/cccamlog
    FILE_1=warning.txt
    FILE_2=cccam.check
    FILE_3=oscam.check
    FILE_4=CCcam.log
    FILE_5=Oscam.log

    echo && date

    if test -f $TARGETDIR_1/$FILE_1 ; then
    echo "warning text present!"
    chown $OWNER $TARGETDIR_1/$FILE_1
    rm $TARGETDIR_1/$FILE_1
    else
    echo "No warning text present?!?!Nothing to remove"
    fi

    if test -f $TARGETDIR_2/$FILE_2 ; then
    echo "Check File present!"
    chown $OWNER $TARGETDIR_2/$FILE_2
    rm $TARGETDIR_2/$FILE_2
    else
    echo "No Check File present?!?! Nothing to remove"
    fi
    if test -f $TARGETDIR_2/$FILE_3 ; then
    echo "Check File present!"
    chown $OWNER $TARGETDIR_2/$FILE_3
    rm $TARGETDIR_2/$FILE_3
    else
    echo "No Check File present?!?! Nothing to remove"
    fi

    if test -f $TARGETDIR_2/$FILE_4 ; then
    echo "CCcam Debug Log precent!"
    chown $OWNER $TARGETDIR_2/$FILE_4
    rm $TARGETDIR_2/$FILE_4

    if test -f $TARGETDIR_2/$FILE_5 ; then
    echo "Oscam Debug Log precent!"
    chown $OWNER $TARGETDIR_2/$FILE_5
    rm $TARGETDIR_2/$FILE_5
    else
    echo "No! CCcam/Oscam Debug file present, CCcam/Oscam did run perfectly !!"
    fi
    exit

    Comment

    Working...