无法在 ubuntu 12.04 Dell Inspiron 15 上启用 wifi

无法在 ubuntu 12.04 Dell Inspiron 15 上启用 wifi

我是 Ubuntu 新手,我知道有很多类似的问题,我尝试遵循网络上的一些答案(例如Dell Inspiron Wifi 关闭或者如何使 Atheros AR8162 工作?),但它们都不起作用,或者在过程中引发更多错误。

最近我买了一台安装了 Ubuntu 12.04 的新戴尔 Inspiron 15,但没有连接 wifi 的选项。我的路由器可以正常工作,所有其他设备都可以连接。

以下是您可能需要的一些建议信息。我很乐意提供进一步的信息,请帮助我。

 $ iwconfig 

eth0      no wireless extensions.

lo        no wireless extensions.


$ rfkill list all
2: hci0: Bluetooth
    Soft blocked: no
    Hard blocked: no


iwlist scan
eth0      Interface doesn't support scanning.

lo        Interface doesn't support scanning.



lspci | grep Network
02:00.0 Network controller: Qualcomm Atheros QCA9565 / AR9565 Wireless Network Adapter (rev 01)



sudo lshw -class network
  *-network               
       description: Ethernet interface
       product: RTL8101E/RTL8102E PCI Express Fast Ethernet controller
       vendor: Realtek Semiconductor Co., Ltd.
       physical id: 0
       bus info: pci@0000:01:00.0
       logical name: eth0
       version: 07
       serial: 74:86:7a:4c:6c:b8
       size: 100Mbit/s
       capacity: 100Mbit/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 autonegotiation
       configuration: autonegotiation=on broadcast=yes driver=r8169 driverversion=2.3LK-NAPI duplex=full ip=192.168.0.102 latency=0 link=yes multicast=yes port=MII speed=100Mbit/s
       resources: irq:61 ioport:4000(size=256) memory:c0700000-c0700fff memory:c0400000-c0403fff
  *-network UNCLAIMED
       description: Network controller
       product: QCA9565 / AR9565 Wireless Network Adapter
       vendor: Qualcomm Atheros
       physical id: 0
       bus info: pci@0000:02:00.0
       version: 01
       width: 64 bits
       clock: 33MHz
       capabilities: pm msi pciexpress bus_master cap_list
       configuration: latency=0
       resources: memory:c0600000-c067ffff memory:9fb00000-9fb0ffff

    lsmod | grep ath
ath9k                 133223  0 
ath9k_common           14054  1 ath9k
ath9k_hw              399752  2 ath9k,ath9k_common
ath                    24124  3 ath9k,ath9k_common,ath9k_hw
dm_multipath           23306  0 
scsi_dh                14589  1 dm_multipath
ath3k                  12918  0 
mac80211              555318  2 ath9k,b43
bluetooth             212001  25 bnep,rfcomm,btusb,ath3k
cfg80211              208382  4 ath9k,ath,b43,mac80211

使用这些帮助

`sudo apt-get install linux-backports-modules-cw-3.10-precise-generic

 sudo modprobe ath9k `

但很长时间都没有用。然后我尝试了这个建议,wifi 又可以用了:

Ubuntu 上无法连接 Wi-Fi 信号,但其他操作系统/设备上可以连接(ath9k)

答案1

请打开终端并运行:

uname -r

您的内核版本是否注释了“-pae”?如果是,请获取可用的有线以太网连接,然后执行以下操作:

sudo apt-get install linux-backports-modules-cw-3.10-precise-generic-pae

如果不是,那么:

sudo apt-get install linux-backports-modules-cw-3.10-precise-generic

断开以太网并执行以下操作:

sudo modprobe ath9k

你的无线网络现在应该可以正常工作了。

看来您加载的无线驱动程序可能存在冲突。请打开终端并执行以下操作:

gksudo gedit /etc/modules

删除 b43 行。仔细校对,保存并关闭 gedit。现在执行:

sudo modprobe -r b43
sudo modprobe -r ssb

现在你的无线网络可以正常工作吗?

相关内容