Rainbow Posted March 5, 2008 Report Posted March 5, 2008 Есть сабж подключеный под CDMA оператора PeopleNet. Под маздаем работает в качестве модема на ура. А вот под пингвином не хочет. Устройство находится настраиватся, но при попытке записать АТ команду, ответ не приходит.. Дистр SuSE 10.2 Quote
Garred Posted June 6, 2008 Report Posted June 6, 2008 Встретил такой вариант решения проблемы. Сам еще не пробовал. "Linux systems already have USB modem driver but needs to assign a device to a special node. After the assignment, user can use the node as a modem device. Attached file is a shell script to create a node for "C-motech" modem. The script produces nodes which mount modem as a serial device. The CDU-550 modem will be mounted on /dev/ttyACM# where # is a number, for example, /dev/ttyACM2. Code: #!/bin/bash # usb : acm echo -e "\033[32mMake Modem Device\033[0m" for i in `seq 0 2` ; do mknod /dev/ttyACM$i c 166 $i done echo -e "\033[32mMake Dual Mode Device\033[0m" for i in `seq 0 2` ; do mknod /dev/ttyUSB$i c 188 $i done echo -e "\033[32mMake driver rule\033[0m" /sbin/modprobe usbserial vendor=0x16d8 product=0x5511 /sbin/modprobe usbserial vendor=0x16d8 product=0x5512 /sbin/modprobe usbserial vendor=0x16d8 product=0x5513 /sbin/modprobe usbserial vendor=0x16d8 product=0x5521 /sbin/modprobe usbserial vendor=0x16d8 product=0x5522 /sbin/modprobe usbserial vendor=0x16d8 product=0x5523 /sbin/modprobe usbserial vendor=0x16d8 product=0x5531 /sbin/modprobe usbserial vendor=0x16d8 product=0x5532 /sbin/modprobe usbserial vendor=0x16d8 product=0x5533 /sbin/modprobe usbserial vendor=0x16d8 product=0x5541 /sbin/modprobe usbserial vendor=0x16d8 product=0x5542 /sbin/modprobe usbserial vendor=0x16d8 product=0x5543 /sbin/modprobe usbserial vendor=0x16d8 product=0x5551 /sbin/modprobe usbserial vendor=0x16d8 product=0x5552 /sbin/modprobe usbserial vendor=0x16d8 product=0x5553 /sbin/modprobe usbserial vendor=0x16d8 product=0x5561 /sbin/modprobe usbserial vendor=0x16d8 product=0x5562 /sbin/modprobe usbserial vendor=0x16d8 product=0x5563 /sbin/modprobe usbserial vendor=0x16d8 product=0x6011 /sbin/modprobe usbserial vendor=0x16d8 product=0x6012 /sbin/modprobe usbserial vendor=0x16d8 product=0x6013 /sbin/modprobe usbserial vendor=0x16d8 product=0x6021 /sbin/modprobe usbserial vendor=0x16d8 product=0x6022 /sbin/modprobe usbserial vendor=0x16d8 product=0x6023 /sbin/modprobe usbserial vendor=0x16d8 product=0x6511 /sbin/modprobe usbserial vendor=0x16d8 product=0x6512 /sbin/modprobe usbserial vendor=0x16d8 product=0x6513 /sbin/modprobe usbserial vendor=0x16d8 product=0x6521 /sbin/modprobe usbserial vendor=0x16d8 product=0x6522 /sbin/modprobe usbserial vendor=0x16d8 product=0x6523 /sbin/modprobe usbserial vendor=0x16d8 product=0x6531 /sbin/modprobe usbserial vendor=0x16d8 product=0x6532 /sbin/modprobe usbserial vendor=0x16d8 product=0x6533 /sbin/modprobe usbserial vendor=0x16d8 product=0x6541 /sbin/modprobe usbserial vendor=0x16d8 product=0x6542 /sbin/modprobe usbserial vendor=0x16d8 product=0x6543 /sbin/modprobe usbserial vendor=0x16d8 product=0x6551 /sbin/modprobe usbserial vendor=0x16d8 product=0x6552 /sbin/modprobe usbserial vendor=0x16d8 product=0x6553 /sbin/modprobe usbserial vendor=0x16d8 product=0x6561 /sbin/modprobe usbserial vendor=0x16d8 product=0x6562 /sbin/modprobe usbserial vendor=0x16d8 product=0x6563" Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.