1

I have a this USB USDPA 7.2Mbps Wireless Data Card with a SIM card.

I want to use it on Linux Debian to send SMS.

When I do lsusb, this is my Device:

Bus 001 Device 005: ID 05c6:1000 Qualcomm, Inc. Mass Storage Device

I have tried to use modswitch with the help of this article

sudo usb_modeswitch -W -v 05c6 -p 1000 -K
Take all parameters from the command line


 * usb_modeswitch: handle USB devices with multiple modes
 * Version 2.5.2 (C) Josua Dietze 2017
 * Based on libusb1/libusbx

 ! PLEASE REPORT NEW CONFIGURATIONS !

DefaultVendor=  0x05c6
DefaultProduct= 0x1000

StandardEject=1

Look for default devices ...
  found USB ID 1d6b:0003
  found USB ID 04b4:0510
  found USB ID 1af3:0001
  found USB ID 05c6:1000
   vendor ID matched
   product ID matched
  found USB ID 1d6b:0002
 Found devices in default mode (1)
Access device 002 on bus 001
Get the current device configuration ...
Current configuration number is 1
Use interface number 0
 with class 8
Use endpoints 0x01 (out) and 0x81 (in)

USB description data (for identification)
-------------------------
Manufacturer: Qualcomm, Incorporated
     Product: Qualcomm CDMA Technologies MSM
  Serial No.: 351602000025260
-------------------------
Sending standard EJECT sequence
Looking for active drivers ...
 OK, driver detached
Set up interface 0
Use endpoint 0x01 for message sending ...
Trying to send message 1 to endpoint 0x01 ...
 OK, message successfully sent
Read the response to message 1 (CSW) ...
 Response successfully read (13 bytes), status 0
Trying to send message 2 to endpoint 0x01 ...
 OK, message successfully sent
Read the response to message 2 (CSW) ...
 Response successfully read (13 bytes), status 0
Trying to send message 3 to endpoint 0x01 ...
 OK, message successfully sent
Read the response to message 3 (CSW) ...
 Response successfully read (13 bytes), status 1
Trying to send message 4 to endpoint 0x01 ...
 OK, message successfully sent
Read the response to message 4 (CSW) ...
 Response successfully read (13 bytes), status 1
Reset response endpoint 0x81
Reset message endpoint 0x01
 Could not reset endpoint (probably harmless): -4
 Device is gone, skip any further commands
-> Run lsusb to note any changes. Bye!

)

This is the result of the command `sudo usb_modeswitch -W -v 05c6 -p 1000 -K`:

```bash
sudo usb_modeswitch -W -v 05c6 -p 1000 -K
Take all parameters from the command line


 * usb_modeswitch: handle USB devices with multiple modes
 * Version 2.5.2 (C) Josua Dietze 2017
 * Based on libusb1/libusbx

 ! PLEASE REPORT NEW CONFIGURATIONS !

DefaultVendor=  0x05c6
DefaultProduct= 0x1000

StandardEject=1

Look for default devices ...
  found USB ID 1d6b:0003
  found USB ID 04b4:0510
  found USB ID 1af3:0001
  found USB ID 05c6:1000
   vendor ID matched
   product ID matched
  found USB ID 1d6b:0002
 Found devices in default mode (1)
Access device 002 on bus 001
Get the current device configuration ...
Current configuration number is 1
Use interface number 0
 with class 8
Use endpoints 0x01 (out) and 0x81 (in)

USB description data (for identification)
-------------------------
Manufacturer: Qualcomm, Incorporated
     Product: Qualcomm CDMA Technologies MSM
  Serial No.: 351602000025260
-------------------------
Sending standard EJECT sequence
Looking for active drivers ...
 OK, driver detached
Set up interface 0
Use endpoint 0x01 for message sending ...
Trying to send message 1 to endpoint 0x01 ...
 OK, message successfully sent
Read the response to message 1 (CSW) ...
 Response successfully read (13 bytes), status 0
Trying to send message 2 to endpoint 0x01 ...
 OK, message successfully sent
Read the response to message 2 (CSW) ...
 Response successfully read (13 bytes), status 0
Trying to send message 3 to endpoint 0x01 ...
 OK, message successfully sent
Read the response to message 3 (CSW) ...
 Response successfully read (13 bytes), status 1
Trying to send message 4 to endpoint 0x01 ...
 OK, message successfully sent
Read the response to message 4 (CSW) ...
 Response successfully read (13 bytes), status 1
Reset response endpoint 0x81
Reset message endpoint 0x01
 Could not reset endpoint (probably harmless): -4
 Device is gone, skip any further commands
-> Run lsusb to note any changes. Bye!

Now, lsusb show this device:

Bus 001 Device 005: ID 05c6:6000 Qualcomm, Inc. Siemens SG75

Did it work? Is it persistent?

$ ls /dev/ | grep USB
ttyUSB0
ttyUSB1
ttyUSB2
ttyUSB3
  • Where should I start please?

Does this card have a specific driver for linux?

9
  • Everything I have seen for this card (I have a HUAWEI card myself) says the drivers are on the card. When you insert the card, can you find a Linux folder?
    – anon
    Commented Sep 9, 2020 at 0:27
  • When I do df -h I can't see any drive. Can you share me the link? Commented Sep 9, 2020 at 16:14
  • I googled for that USB Key, and looked at many possibilities. I could not see a Linux driver so if not on the key itself, it probably does not work in Linux.
    – anon
    Commented Sep 9, 2020 at 16:16
  • Have you seen this ? mageialinux-online.org/forum/… , with the help of it I have now Bus 001 Device 005: ID 05c6:6000 Qualcomm, Inc. Siemens SG75 Commented Sep 9, 2020 at 16:24
  • I have not seen that or even know who the card maker is. If they have a Linux driver , try it.
    – anon
    Commented Sep 9, 2020 at 17:05

0

You must log in to answer this question.

Browse other questions tagged .