web-dev-qa-db-ja.com

Ubuntu 18.04 WiFiアダプターが見つかりません[Dell Inspiron3542。]

Ubuntu 18.04をインストールしましたが、WiFiアダプターQualcomm Atheros QCA9565/AR9565ワイヤレスネットワークアダプターが機能しないか、システム設定に表示されません。

lspci -knnの出力| grep Net -A3:

> rahul@rahul-Inspiron-3542:~$ lspci -knn | grep Net -A3
06:00.0 Network controller [0280]: Qualcomm Atheros QCA9565 / AR9565 Wireless Network Adapter [168c:0036] (rev 01)
    Subsystem: Dell QCA9565 / AR9565 Wireless Network Adapter [1028:020c]
    Kernel driver in use: ath9k
    Kernel modules: ath9k
07:00.0 Ethernet controller [0200]: Realtek Semiconductor Co., Ltd. RTL8101/2/6E PCI Express Fast/Gigabit Ethernet controller [10ec:8136] (rev 07)

lspci -knnの出力| grep Net -A2

rahul@rahul-Inspiron-3542:~$ lspci -knn | grep Net -A2
06:00.0 Network controller [0280]: Qualcomm Atheros QCA9565 / AR9565 Wireless Network Adapter [168c:0036] (rev 01)
    Subsystem: Dell QCA9565 / AR9565 Wireless Network Adapter [1028:020c]
    Kernel driver in use: ath9k
    Kernel modules: ath9k

sudo rfkillリストの出力

rahul@rahul-Inspiron-3542:~$ Sudo rfkill list
[Sudo] password for rahul: 
0: Dell-rbtn: Wireless LAN
    Soft blocked: yes
    Hard blocked: yes
1: phy0: Wireless LAN
    Soft blocked: no
    Hard blocked: no
2: hci0: Bluetooth
    Soft blocked: yes
    Hard blocked: no

sudo lshw -Cネットワークの出力

rahul@rahul-Inspiron-3542:~$ Sudo lshw -C network
  *-network DISABLED        
       description: Wireless interface
       product: QCA9565 / AR9565 Wireless Network Adapter
       vendor: Qualcomm Atheros
       physical id: 0
       bus info: pci@0000:06:00.0
       logical name: wlp6s0
       version: 01
       serial: 4c:bb:58:30:aa:07
       width: 64 bits
       clock: 33MHz
       capabilities: pm msi pciexpress bus_master cap_list rom ethernet physical wireless
       configuration: broadcast=yes driver=ath9k driverversion=4.17.11-041711-generic firmware=N/A latency=0 link=no multicast=yes wireless=IEEE 802.11
       resources: irq:18 memory:f7900000-f797ffff memory:f7980000-f798ffff
  *-network
       description: Ethernet interface
       product: RTL8101/2/6E PCI Express Fast/Gigabit Ethernet controller
       vendor: Realtek Semiconductor Co., Ltd.
       physical id: 0
       bus info: pci@0000:07:00.0
       logical name: enp7s0
       version: 07
       serial: 74:e6:e2:14:2a:c8
       size: 10Mbit/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=half firmware=rtl8106e-1_0.0.1 06/29/12 latency=0 link=no multicast=yes port=MII speed=10Mbit/s
       resources: irq:19 ioport:e000(size=256) memory:f7800000-f7800fff memory:f2100000-f2103fff
  *-network
       description: Ethernet interface
       physical id: 2
       logical name: enp0s20u1
       serial: 7a:14:5b:44:b4:96
       capabilities: ethernet physical
       configuration: broadcast=yes driver=rndis_Host driverversion=22-Aug-2005 firmware=RNDIS device ip=192.168.42.109 link=yes multicast=yes

dmesgの出力| grep ath9k

rahul@rahul-Inspiron-3542:~$ dmesg | grep ath9k
[   23.712505] ath9k 0000:06:00.0 wlp6s0: renamed from wlan0

sudo iw devの出力

rahul@rahul-Inspiron-3542:~$ Sudo iw dev
[Sudo] password for rahul: 
phy#0
    Interface wlp6s0
        ifindex 3
        wdev 0x1
        addr 4c:bb:58:30:aa:07
        type managed
        txpower 0.00 dBm

dmesgの出力 dmesgの出力

私はすでに非常に多くの解決策を試しましたが、私には何もうまくいきません。私は非常に多くの日から答えを探しています。誰かが私の問題を解決してください。他の情報が必要な場合はお知らせください。

どんな助けも大歓迎です。

2
Rahul Saini

私は1か月間、問題なく「Wi-Fiアダプタが見つかりません」という問題の解決策を見つけましたが、Ubuntu 16.04とUbuntu 14.04を試したので問題はubuntuのすべてのバージョンで同じですが、最終的に解決策を見つけることができましたほとんどすべての利用可能なソリューションを試してみました。

私の場合、rfkillリストの出力

0: Dell-rbtn: Wireless LAN
    Soft blocked: yes
    Hard blocked: yes 

問題を解決するには、Dell-rbtnをブラックリストに登録する必要があります(これはハードウェアの問題です)

dell-rbtnをリストに追加するには

echo "blacklist Dell-rbtn" | Sudo tee /etc/modprobe.d/Dell-rbtn.conf

この後、ラップトップを再起動すると、WIFIを使用できるようになります。

私はこの問題を解決するために数ヶ月も試みたので、これが誰かを助けることを願っています。ありがとう

最後に私のラップトップの構成Dell Inspiron 3542およびネットワークコントローラー[0280]:Qualcomm Atheros QCA9565/AR9565ワイヤレスネットワークアダプター

2
Rahul Saini