web-dev-qa-db-ja.com

WiFiアダプターが見つかりません、Dell XPS 9570、Killer 1350カード

Linuxの初心者はこちら。マシンにWindows 10とともにUbuntu 18.04.1をインストールしました。約1週間、すべてがスムーズに機能していましたが、突然、ネットワークカードが死んでしまいました。ファームウェアをインストールし、ネットワークマネージャーを再起動しても、BIOSまたはWindowsまたはUbuntuからカードにアクセスできませんでした。見えませんでした。

そのため、デルから新しいカードを入手しました(ラップトップはまだ保証期間中です)が、交換するカードは同じです。これで、Bluetoothを使用でき、Windowsを起動したときにカードが機能します。ただし、WiFiの下では、WiFiアダプターはまだないという。

誰か助けてもらえますか?

詳細情報:

Sudo lshw -C network

*-network UNCLAIMED       
   description: Network controller
   product: QCA6174 802.11ac Wireless Network Adapter
   vendor: Qualcomm Atheros
   physical id: 0
   bus info: pci@0000:3b:00.0
   version: 32
   width: 64 bits
   clock: 33MHz
   capabilities: pm msi pciexpress cap_list
   configuration: latency=0
   resources: memory:ed200000-ed3fffff
*-network
   description: Ethernet interface
   physical id: 2
   logical name: enp0s20f0u5
   serial: 56:37:21:ac:5b:58
   capabilities: ethernet physical
   configuration: broadcast=yes driver=rndis_Host driverversion=22-Aug-2005 firmware=RNDIS device  link=yes multicast=yes

rfkill list

0: hci0: Bluetooth
  Soft blocked: no
  Hard blocked: no

dmesg | grep ath10k

(gives me nothing)

lspci -nnk | grep 0280 -A3

3b:00.0 Network controller [0280]: Qualcomm Atheros QCA6174 802.11ac Wireless Network Adapter [168c:003e] (rev 32)
    Subsystem: Bigfoot Networks, Inc. QCA6174 802.11ac Wireless Network Adapter [1a56:1535]
    Kernel modules: ath10k_pci, wl
3c:00.0 Unassigned class [ff00]: Realtek Semiconductor Co., Ltd. RTS525A PCI Express Card Reader [10ec:525a] (rev 01)
3

カーネルの更新が壊れていると思います

Sudo apt install --reinstall linux-modules-extra-$(uname -r)

リブート

3
Jeremy31