USB card reader does not work in Linux. Prolific driver missing?
When I plug the reader into USB port then it is not recognized by the system and the red LED in it keeps on glowing (as opposed to the situation when it is running properly and the LED is only glowing and blinking for some time and then fades away).
I have no idea how could I make the reader running in Linux (OpenSuse).
When I run lsusb in the command line I see that there is a new entry after plugging in the said device
Bus 003 Device 002: ID 067b:2303 Prolific Technology, Inc. PL2303 Serial Port
However the output of
dmesg | grep "scsi generic sg"
does not list the desired device.
How can I get proper drivers for Linux if I only have them for Windows?
drivers usb opensuse
New contributor
MK. is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
add a comment |
When I plug the reader into USB port then it is not recognized by the system and the red LED in it keeps on glowing (as opposed to the situation when it is running properly and the LED is only glowing and blinking for some time and then fades away).
I have no idea how could I make the reader running in Linux (OpenSuse).
When I run lsusb in the command line I see that there is a new entry after plugging in the said device
Bus 003 Device 002: ID 067b:2303 Prolific Technology, Inc. PL2303 Serial Port
However the output of
dmesg | grep "scsi generic sg"
does not list the desired device.
How can I get proper drivers for Linux if I only have them for Windows?
drivers usb opensuse
New contributor
MK. is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
btw, the kernel driver (exposing the serial port) should be there:/lib/modules/$(uname -r)/kernel/drivers/usb/serial/pl2303.ko. If not, then an other kernel with the driver enabled has to be used.
– A.B
20 hours ago
(corrected my 1st comment) I remember that to get my pl2303 based cheap SIM card reader used on Debian, I needed openct as backend for pcsclite. I don't remember any generic scsi. It exposed a serial port. openct was dropped so it became difficult to use it on debian 8 and quite impossible on debian 9. You should consider getting a more modern reader. eg: ccid.apdu.fr/ccid/section.html (ideally with extended apdu support, as seen there: Extended APDU status per reader )
– A.B
19 hours ago
This should help setting up openct+pcsc (as long as you find the software for suse, and that pcsc still uses openct as backend): Using cheap SIM card readers.
– A.B
19 hours ago
Please don'tgrepdmesg output, you'll loose all error messages. Instead, edit question with all new lines indmesgthat appear after you plug in the device. This will tell you (and us) if there are any errors, and if a driver loads. If the driver doesn't load, next step is tomodinfo pl2303and see if the load patterns match the USB info.
– dirkt
53 mins ago
add a comment |
When I plug the reader into USB port then it is not recognized by the system and the red LED in it keeps on glowing (as opposed to the situation when it is running properly and the LED is only glowing and blinking for some time and then fades away).
I have no idea how could I make the reader running in Linux (OpenSuse).
When I run lsusb in the command line I see that there is a new entry after plugging in the said device
Bus 003 Device 002: ID 067b:2303 Prolific Technology, Inc. PL2303 Serial Port
However the output of
dmesg | grep "scsi generic sg"
does not list the desired device.
How can I get proper drivers for Linux if I only have them for Windows?
drivers usb opensuse
New contributor
MK. is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
When I plug the reader into USB port then it is not recognized by the system and the red LED in it keeps on glowing (as opposed to the situation when it is running properly and the LED is only glowing and blinking for some time and then fades away).
I have no idea how could I make the reader running in Linux (OpenSuse).
When I run lsusb in the command line I see that there is a new entry after plugging in the said device
Bus 003 Device 002: ID 067b:2303 Prolific Technology, Inc. PL2303 Serial Port
However the output of
dmesg | grep "scsi generic sg"
does not list the desired device.
How can I get proper drivers for Linux if I only have them for Windows?
drivers usb opensuse
drivers usb opensuse
New contributor
MK. is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
New contributor
MK. is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
edited 10 hours ago
Rui F Ribeiro
38.8k1479128
38.8k1479128
New contributor
MK. is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
asked 21 hours ago
MK.
1
1
New contributor
MK. is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
New contributor
MK. is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
MK. is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
btw, the kernel driver (exposing the serial port) should be there:/lib/modules/$(uname -r)/kernel/drivers/usb/serial/pl2303.ko. If not, then an other kernel with the driver enabled has to be used.
– A.B
20 hours ago
(corrected my 1st comment) I remember that to get my pl2303 based cheap SIM card reader used on Debian, I needed openct as backend for pcsclite. I don't remember any generic scsi. It exposed a serial port. openct was dropped so it became difficult to use it on debian 8 and quite impossible on debian 9. You should consider getting a more modern reader. eg: ccid.apdu.fr/ccid/section.html (ideally with extended apdu support, as seen there: Extended APDU status per reader )
– A.B
19 hours ago
This should help setting up openct+pcsc (as long as you find the software for suse, and that pcsc still uses openct as backend): Using cheap SIM card readers.
– A.B
19 hours ago
Please don'tgrepdmesg output, you'll loose all error messages. Instead, edit question with all new lines indmesgthat appear after you plug in the device. This will tell you (and us) if there are any errors, and if a driver loads. If the driver doesn't load, next step is tomodinfo pl2303and see if the load patterns match the USB info.
– dirkt
53 mins ago
add a comment |
btw, the kernel driver (exposing the serial port) should be there:/lib/modules/$(uname -r)/kernel/drivers/usb/serial/pl2303.ko. If not, then an other kernel with the driver enabled has to be used.
– A.B
20 hours ago
(corrected my 1st comment) I remember that to get my pl2303 based cheap SIM card reader used on Debian, I needed openct as backend for pcsclite. I don't remember any generic scsi. It exposed a serial port. openct was dropped so it became difficult to use it on debian 8 and quite impossible on debian 9. You should consider getting a more modern reader. eg: ccid.apdu.fr/ccid/section.html (ideally with extended apdu support, as seen there: Extended APDU status per reader )
– A.B
19 hours ago
This should help setting up openct+pcsc (as long as you find the software for suse, and that pcsc still uses openct as backend): Using cheap SIM card readers.
– A.B
19 hours ago
Please don'tgrepdmesg output, you'll loose all error messages. Instead, edit question with all new lines indmesgthat appear after you plug in the device. This will tell you (and us) if there are any errors, and if a driver loads. If the driver doesn't load, next step is tomodinfo pl2303and see if the load patterns match the USB info.
– dirkt
53 mins ago
btw, the kernel driver (exposing the serial port) should be there:
/lib/modules/$(uname -r)/kernel/drivers/usb/serial/pl2303.ko. If not, then an other kernel with the driver enabled has to be used.– A.B
20 hours ago
btw, the kernel driver (exposing the serial port) should be there:
/lib/modules/$(uname -r)/kernel/drivers/usb/serial/pl2303.ko. If not, then an other kernel with the driver enabled has to be used.– A.B
20 hours ago
(corrected my 1st comment) I remember that to get my pl2303 based cheap SIM card reader used on Debian, I needed openct as backend for pcsclite. I don't remember any generic scsi. It exposed a serial port. openct was dropped so it became difficult to use it on debian 8 and quite impossible on debian 9. You should consider getting a more modern reader. eg: ccid.apdu.fr/ccid/section.html (ideally with extended apdu support, as seen there: Extended APDU status per reader )
– A.B
19 hours ago
(corrected my 1st comment) I remember that to get my pl2303 based cheap SIM card reader used on Debian, I needed openct as backend for pcsclite. I don't remember any generic scsi. It exposed a serial port. openct was dropped so it became difficult to use it on debian 8 and quite impossible on debian 9. You should consider getting a more modern reader. eg: ccid.apdu.fr/ccid/section.html (ideally with extended apdu support, as seen there: Extended APDU status per reader )
– A.B
19 hours ago
This should help setting up openct+pcsc (as long as you find the software for suse, and that pcsc still uses openct as backend): Using cheap SIM card readers.
– A.B
19 hours ago
This should help setting up openct+pcsc (as long as you find the software for suse, and that pcsc still uses openct as backend): Using cheap SIM card readers.
– A.B
19 hours ago
Please don't
grep dmesg output, you'll loose all error messages. Instead, edit question with all new lines in dmesg that appear after you plug in the device. This will tell you (and us) if there are any errors, and if a driver loads. If the driver doesn't load, next step is to modinfo pl2303 and see if the load patterns match the USB info.– dirkt
53 mins ago
Please don't
grep dmesg output, you'll loose all error messages. Instead, edit question with all new lines in dmesg that appear after you plug in the device. This will tell you (and us) if there are any errors, and if a driver loads. If the driver doesn't load, next step is to modinfo pl2303 and see if the load patterns match the USB info.– dirkt
53 mins ago
add a comment |
active
oldest
votes
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "106"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
MK. is a new contributor. Be nice, and check out our Code of Conduct.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f490422%2fusb-card-reader-does-not-work-in-linux-prolific-driver-missing%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
active
oldest
votes
active
oldest
votes
active
oldest
votes
active
oldest
votes
MK. is a new contributor. Be nice, and check out our Code of Conduct.
MK. is a new contributor. Be nice, and check out our Code of Conduct.
MK. is a new contributor. Be nice, and check out our Code of Conduct.
MK. is a new contributor. Be nice, and check out our Code of Conduct.
Thanks for contributing an answer to Unix & Linux Stack Exchange!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f490422%2fusb-card-reader-does-not-work-in-linux-prolific-driver-missing%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
btw, the kernel driver (exposing the serial port) should be there:
/lib/modules/$(uname -r)/kernel/drivers/usb/serial/pl2303.ko. If not, then an other kernel with the driver enabled has to be used.– A.B
20 hours ago
(corrected my 1st comment) I remember that to get my pl2303 based cheap SIM card reader used on Debian, I needed openct as backend for pcsclite. I don't remember any generic scsi. It exposed a serial port. openct was dropped so it became difficult to use it on debian 8 and quite impossible on debian 9. You should consider getting a more modern reader. eg: ccid.apdu.fr/ccid/section.html (ideally with extended apdu support, as seen there: Extended APDU status per reader )
– A.B
19 hours ago
This should help setting up openct+pcsc (as long as you find the software for suse, and that pcsc still uses openct as backend): Using cheap SIM card readers.
– A.B
19 hours ago
Please don't
grepdmesg output, you'll loose all error messages. Instead, edit question with all new lines indmesgthat appear after you plug in the device. This will tell you (and us) if there are any errors, and if a driver loads. If the driver doesn't load, next step is tomodinfo pl2303and see if the load patterns match the USB info.– dirkt
53 mins ago