web-dev-qa-db-ja.com

Ubuntu 12.04 Dell Inspiron 15でWi-Fiを有効にできない

私はUbuntuを使い始めたばかりですが、同様の問題がたくさんあることを知っており、Webでいくつかの回答を試そうとしました(例 Dell Inspiron Wifi off または How do I Atheros AR8162を動作させますか? )ですが、どれも動作していないか、途中でより多くのエラーを引き起こしています。

最近、Ubuntu 12.04がインストールされた新しいDell 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が機能します:

buntuでwi-fi信号に到達できませんが、他のOS /デバイス(ath9k)では到達できます

1
user263570

ターミナルを開いて実行してください:

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

ワイヤレスは正常に機能していますか?

1
chili555