Jump to content


Photo

PCSC driver for uno4k se


  • Please log in to reply
47 replies to this topic

Re: PCSC driver for uno4k se #21 Pr2

  • PLi® Contributor
  • 6,046 posts

+256
Excellent

Posted 2 November 2019 - 15:29

First of all unplug your device, reboot your box.

Once rebooted type lsusb

Carefull count the number of returned lines.

 

Connect your Omnikey to the box, issue a lsusb count the number of returned lines, you should have one more line in the list (be careful that the new entry is not at the end of the list).


NO SUPPORT by PM, it is a forum make your question public so everybody can benefit from the question/answer.
If you think that my answer helps you, you can press the up arrow in bottom right of the answer.

Wanna help with OpenPLi Translation? Please read our Wiki Information for translators

Sat: Hotbird 13.0E, Astra 19.2E, Eutelsat5A 5.0W
VU+ Solo 4K: 2*DVB-S2 + 2*DVB-C/T/T2 (used in DVB-C) & Duo 4K: 2*DVB-S2X + DVB-C (FBC)

AB-Com: PULSe 4K 1*DVB-S2X (+ DVB-C/T/T2)
Edision OS Mio 4K: 1*DVB-S2X + 1*DVB-C/T/T2
 


Re: PCSC driver for uno4k se #22 Zolyma

  • Senior Member
  • 125 posts

0
Neutral

Posted 2 November 2019 - 15:50

I did, now i see in lsusb as ID 076b:3021.
But not work in oscam.
The oscam build with pcsc support.
Should i remove the usb phoenix that it works well?
I will try!

Re: PCSC driver for uno4k se #23 Zolyma

  • Senior Member
  • 125 posts

0
Neutral

Posted 4 November 2019 - 16:28

Now work well!
I have to start the pcsc manually in telenet like this:

pcscd -start

so i need a script to auto start...



Re: PCSC driver for uno4k se #24 WanWizard

  • PLi® Core member
  • 68,309 posts

+1,719
Excellent

Posted 4 November 2019 - 16:34

does it not exist in /etc/init.d?


Currently in use: VU+ Duo 4K (2xFBC S2), VU+ Solo 4K (1xFBC S2), uClan Usytm 4K Pro (S2+T2), Octagon SF8008 (S2+T2), Zgemma H9.2H (S2+T2)

Due to my bad health, I will not be very active at times and may be slow to respond. I will not read the forum or PM on a regular basis.

Many answers to your question can be found in our new and improved wiki.


Re: PCSC driver for uno4k se #25 Zolyma

  • Senior Member
  • 125 posts

0
Neutral

Posted 4 November 2019 - 16:52

no



Re: PCSC driver for uno4k se #26 Zolyma

  • Senior Member
  • 125 posts

0
Neutral

Posted 4 November 2019 - 20:20

What kind of file should be there?
How can i start it with the system?

Re: PCSC driver for uno4k se #27 WanWizard

  • PLi® Core member
  • 68,309 posts

+1,719
Excellent

Posted 4 November 2019 - 23:13

I've added It to my todo list.


Currently in use: VU+ Duo 4K (2xFBC S2), VU+ Solo 4K (1xFBC S2), uClan Usytm 4K Pro (S2+T2), Octagon SF8008 (S2+T2), Zgemma H9.2H (S2+T2)

Due to my bad health, I will not be very active at times and may be slow to respond. I will not read the forum or PM on a regular basis.

Many answers to your question can be found in our new and improved wiki.


Re: PCSC driver for uno4k se #28 Zolyma

  • Senior Member
  • 125 posts

0
Neutral

Posted 5 November 2019 - 08:07

Thank you!
When's it coming?
I will get it with update?

Re: PCSC driver for uno4k se #29 WanWizard

  • PLi® Core member
  • 68,309 posts

+1,719
Excellent

Posted 5 November 2019 - 12:34

When it's ready. ;)

 

I will try to get it included in 7.2-release.


Currently in use: VU+ Duo 4K (2xFBC S2), VU+ Solo 4K (1xFBC S2), uClan Usytm 4K Pro (S2+T2), Octagon SF8008 (S2+T2), Zgemma H9.2H (S2+T2)

Due to my bad health, I will not be very active at times and may be slow to respond. I will not read the forum or PM on a regular basis.

Many answers to your question can be found in our new and improved wiki.


Re: PCSC driver for uno4k se #30 WanWizard

  • PLi® Core member
  • 68,309 posts

+1,719
Excellent

Posted 5 November 2019 - 13:41

Can you create the file "/etc/init.d/pcscd", add this to it:

#!/bin/sh
DAEMON=/usr/sbin/pcscd
NAME=pcscd
DESC="PCSC Daemon"
PIDFILE=/var/run/pcscd/pcscd.pid
ARGS=""

test -f $DAEMON || exit 0

case "$1" in
    start)
        echo -n "Starting $DESC: $NAME"
        start-stop-daemon --start --quiet --pidfile $PIDFILE --exec $DAEMON -- $ARGS
        echo "."
        ;;
    stop)
        echo -n "Stopping $DESC: $NAME"
        start-stop-daemon --stop --quiet --pidfile $PIDFILE --exec $DAEMON
        echo "."
        ;;
    restart)
        $0 stop
        sleep 1
        $0 start
        ;;
    *)
        echo "Usage: $0 {start|stop|restart}"
        exit 1
        ;;
esac

exit 0

chmod it 755, 

 

and check if 

/etc/init.d/pcscd start

and 

/etc/init.d/pscsd stop

work?


Currently in use: VU+ Duo 4K (2xFBC S2), VU+ Solo 4K (1xFBC S2), uClan Usytm 4K Pro (S2+T2), Octagon SF8008 (S2+T2), Zgemma H9.2H (S2+T2)

Due to my bad health, I will not be very active at times and may be slow to respond. I will not read the forum or PM on a regular basis.

Many answers to your question can be found in our new and improved wiki.


Re: PCSC driver for uno4k se #31 WanWizard

  • PLi® Core member
  • 68,309 posts

+1,719
Excellent

Posted 5 November 2019 - 16:34

Added to develop for testing: https://github.com/O...98375523e0b7251

 

It will be added to 7.2-rc on the next merge.


Currently in use: VU+ Duo 4K (2xFBC S2), VU+ Solo 4K (1xFBC S2), uClan Usytm 4K Pro (S2+T2), Octagon SF8008 (S2+T2), Zgemma H9.2H (S2+T2)

Due to my bad health, I will not be very active at times and may be slow to respond. I will not read the forum or PM on a regular basis.

Many answers to your question can be found in our new and improved wiki.


Re: PCSC driver for uno4k se #32 Zolyma

  • Senior Member
  • 125 posts

0
Neutral

Posted 5 November 2019 - 17:45

If i write in putty: /etc/init.d/pcscd start
Than start, but if i write:
/etc/init.d/pscsd stop
than not found...
And do not start with system.

 



Re: PCSC driver for uno4k se #33 WanWizard

  • PLi® Core member
  • 68,309 posts

+1,719
Excellent

Posted 5 November 2019 - 18:17

I didn't ask you that, did I?

 

So, does it start, and does it work when its started?


Currently in use: VU+ Duo 4K (2xFBC S2), VU+ Solo 4K (1xFBC S2), uClan Usytm 4K Pro (S2+T2), Octagon SF8008 (S2+T2), Zgemma H9.2H (S2+T2)

Due to my bad health, I will not be very active at times and may be slow to respond. I will not read the forum or PM on a regular basis.

Many answers to your question can be found in our new and improved wiki.


Re: PCSC driver for uno4k se #34 Zolyma

  • Senior Member
  • 125 posts

0
Neutral

Posted 5 November 2019 - 18:18

yes, you did!

"and check if 

/etc/init.d/pcscd start

and 

/etc/init.d/pscsd stop

work?"



Re: PCSC driver for uno4k se #35 Zolyma

  • Senior Member
  • 125 posts

0
Neutral

Posted 5 November 2019 - 18:28

So, does it start, and does it work when its started?

No!

When i reboot the box, the reader not work, untill i won't start it manually!


Re: PCSC driver for uno4k se #36 WanWizard

  • PLi® Core member
  • 68,309 posts

+1,719
Excellent

Posted 5 November 2019 - 18:42

Maybe I wasn't clear enough, the question was whether your cardreader works when you start it. Or if it needs any arguments.

 

That is what this is about, isn't it?


Currently in use: VU+ Duo 4K (2xFBC S2), VU+ Solo 4K (1xFBC S2), uClan Usytm 4K Pro (S2+T2), Octagon SF8008 (S2+T2), Zgemma H9.2H (S2+T2)

Due to my bad health, I will not be very active at times and may be slow to respond. I will not read the forum or PM on a regular basis.

Many answers to your question can be found in our new and improved wiki.


Re: PCSC driver for uno4k se #37 Zolyma

  • Senior Member
  • 125 posts

0
Neutral

Posted 5 November 2019 - 18:56

No!
My problem, that when i start the box, the reader not work just if i start it manually!
It already worked and i would like a script, which start the reader when the system boot up!

Re: PCSC driver for uno4k se #38 WanWizard

  • PLi® Core member
  • 68,309 posts

+1,719
Excellent

Posted 5 November 2019 - 18:59

Why do I even spend time on this if you can't be bothered to answer my simple questions?

 

I never said that the script on its own would be the magical fix. I made an init script, and I asked you to test it since I don't own a reader. I didn't ask you anything else, and that includes checking if it starts after a reboot.


Currently in use: VU+ Duo 4K (2xFBC S2), VU+ Solo 4K (1xFBC S2), uClan Usytm 4K Pro (S2+T2), Octagon SF8008 (S2+T2), Zgemma H9.2H (S2+T2)

Due to my bad health, I will not be very active at times and may be slow to respond. I will not read the forum or PM on a regular basis.

Many answers to your question can be found in our new and improved wiki.


Re: PCSC driver for uno4k se #39 Zolyma

  • Senior Member
  • 125 posts

0
Neutral

Posted 5 November 2019 - 19:25

I gave you answer:

"If i write in putty: /etc/init.d/pcscd start
Than start, but if i write:
/etc/init.d/pscsd stop
than not found..."

So, yes, it works when i write it in putty.

Re: PCSC driver for uno4k se #40 ccs

  • Senior Member
  • 229 posts

+7
Neutral

Posted 5 November 2019 - 19:29

yes, you did!

"and check if 

/etc/init.d/pcscd start

and 

/etc/init.d/pscsd stop

work?"

Spot the typo.


test



0 user(s) are reading this topic

0 members, 0 guests, 0 anonymous users