我有Intel Centrino N 2230 WiFi卡,我试图从Ubuntu无线驱动程序下载iwlwifi
tar,然后将它的.ucode
复制到固件文件夹中,然后运行modprobe -r lawgn
和modprobe lawgn
。即使在重启之后,它也没有运行。然后我更新了compat-drivers
,但仍然没有工作。
我尝试了rfkill unblock all
,检查了按钮等等,但是它没有出现在airmon-ng
和iwconfig
中。
有人能帮忙吗?
这是我的产出:
lshw -C network
*-network
description: Ethernet interface
product: RTL8111/8168B PCI Express Gigabit Ethernet controller
vendor: Realtek Semiconductor Co., Ltd.
physical id: 0.2
bus info: pci@0000:07:00.2
logical name: eth0
version: 0a
serial: 28:92:4a:1d:af:a1
size: 100MB/s
capacity: 1GB/s
width: 64 bits
clock: 33MHz
capabilities: pm msi pciexpress msix vpd bus_master cap_list ethernet physical tp mii 10bt 10bt-fd 100bt 100bt-fd 1000bt 1000bt-fd autonegotiation
configuration: autonegotiation=on broadcast=yes driver=r8169 driverversion=2.3LK-NAPI duplex=full ip=192.168.1.3 latency=0 link=yes multicast=yes port=MII speed=100MB/s
resources: irq:41 ioport:2000(size=256) memory:61404000-61404fff memory:61400000-61403fff
*-network UNCLAIMED
description: Network controller
product: Intel Corporation
vendor: Intel Corporation
physical id: 0
bus info: pci@0000:08:00.0
version: c4
width: 64 bits
clock: 33MHz
capabilities: pm msi pciexpress bus_master cap_list
configuration: latency=0
resources: memory:61500000-61501fff
iwconfig
lo no wireless extensions.
eth0 no wireless extensions.
airmon-ng
Interface Chipset Driver
lsb_release -a; uname -a
No LSB modules are available.
Distributor ID: Ubuntu
Description: Ubuntu 10.04.2 LTS
Release: 10.04
Codename: lucid
Linux bt 2.6.38 #1 SMP Thu Mar 17 20:52:18 EDT 2011 i686 GNU/Linux
发布于 2013-10-17 05:13:55
您有一个常见的难题:一个较新的无线设备和一个较旧的Ubuntu版本。您的设备的PCI.ID在10.04中没有包含在iwlagn版本中。我建议您升级到Ubuntu12.04.3LTS,在那里您的无线将完美地工作,没有进一步的步骤。
如果您承诺使用Ubuntu 10.04,请连接有线以太网连接,打开终端并执行以下操作:
sudo apt-get install linux-backports-modules-wireless-3.3-lucid-generic
断开以太网。重新启动后,您的无线应该是工作的。
https://askubuntu.com/questions/357405
复制