Трабла с Билайновским USB модемом
Добавлено: 30 апр 2010, 22:53
на #dmesg | grep ttyUSB* он мне ничего не отвечает...(((
Форум сообщества системных администраторов и просто людей, которым не безразличен их компьютер.
https://sysadmins.ws/
А наBaHbKa писал(а):Народ, подскажите пожалуйста, как его можно настроить???
на #dmesg | grep ttyUSB* он мне ничего не отвечает...(((
Код: Выделить всё
#dmesg | grep ttyACM*
Код: Выделить всё
su -
Код: Выделить всё
eject /dev/sr0
Код: Выделить всё
/sbin/modprobe usbserial vendor=0x19d2 product=0x0001
Код: Выделить всё
dmesg | grep ttyUSB
Код: Выделить всё
cd /etc/udev/rules.d
Код: Выделить всё
vi 15-zte-mf622.rules
Код: Выделить всё
ACTION!="add", GOTO="ZTE_End"
# Is this the ZeroCD device?
SUBSYSTEM=="usb", SYSFS{idProduct}=="2000",
SYSFS{idVendor}=="19d2", GOTO="ZTE_ZeroCD"
# Is this the actual modem?
SUBSYSTEM=="usb", SYSFS{idProduct}=="0001",
SYSFS{idVendor}=="19d2", GOTO="ZTE_Modem"
LABEL="ZTE_ZeroCD"
# This is the ZeroCD part of the card, remove
# the usb_storage kernel module so
# it does not get treated like a storage device
RUN+="/sbin/rmmod usb_storage"
LABEL="ZTE_Modem"
# This is the Modem part of the card, let's
# load usbserial with the correct vendor
# and product ID's so we get our usb serial devices
RUN+="/sbin/modprobe usbserial vendor=0x19d2 product=0x0001",
# Make users belonging to the dialout group
# able to use the usb serial devices.
MODE="660", GROUP="dialout"
LABEL="ZTE_End"