|
|
操作系统:Redhat 9.0
无线网卡芯片: Atmel (idVendor 0x3eb, idProduct 0x7614)
选用的无线网卡驱动:atmelwlandriver-3.2.4.4
根据驱动程序中的README安装,安装后不能正常加载硬件,好像是模块不对,操作如下后能找到硬件
$lsmod # 发现有 usb-uhci
$rmmod usb-uhci # 删除 usb-uhci
#modprobe uhci # 加载uhci
修改 /etc/modules.conf中的
alias usb-controller usb-uhci
为
alias usb-controller uhci # 为了下次启动后,加载此模块
现在已经能够发现USB硬件,lsusb后如下:
...
Bus 001 Device 005: ID 03eb:7614 Atmel Corp.
Language IDs: none (cannot get min. string descriptor; got len=-1, error=32:Broken pipe)
Device Descriptor:
bLength 18
bDescriptorType 1
bcdUSB 1.10
bDeviceClass 0 Interface
bDeviceSubClass 0
bDeviceProtocol 0
bMaxPacketSize0 8
idVendor 0x03eb Atmel Corp.
idProduct 0x7614
bcdDevice 1.00
iManufacturer 0
iProduct 0
iSerial 0
bNumConfigurations 1
cannot get config descriptor 0, Broken pipe (32)
Language IDs: none (cannot get min. string descriptor; got len=-1, error=32:Broken pipe)
我已经根据README中所说,修改了/root/.vnetrc文件。
并且我用
cp /etc/sysconfig/network-scripts/ifcfg-eth0 /etc/sysconfig/network-scripts/ifcfg-atml0
并按要求修改了atml0中的信息。
问题:
1、lsusb的结果是不是代表没有正确加载无线网卡
2、我用ifconfig atml0 up 命令后,出现错误:atml0: unknown interface: 没有那个设备,是什么原因?
:ask
:thank
万分感谢!! |
|