Qualcom Atheros에 와이파이 없음-Ubuntu 16.04-Acer Aspire E 15


10

Qualcom Atheros가 설치된 Acer 랩톱에 Ubuntu 16.04를 설치 한 후에는 작동하지 않습니다. 나는 시도했다.

sudo rfkill list all
0: hci0: Bluetooth
    Soft blocked: no
    Hard blocked: no
1: acer-wireless: Wireless LAN
    Soft blocked: no
    Hard blocked: no

그런 다음 확인

uname -r
4.4.0-21-generic

그리고 내가 제안한대로,

lspci -nnk | grep -iA2 net; dmesg | grep ath10k
02:00.0 Ethernet controller [0200]: Realtek Semiconductor Co., Ltd. RTL8111/8168/8411 PCI Express Gigabit Ethernet Controller [10ec:8168] (rev 15)
    Subsystem: Acer Incorporated [ALI] RTL8111/8168/8411 PCI Express Gigabit Ethernet Controller [1025:0987]
    Kernel driver in use: r8169
    Kernel modules: r8169
03:00.0 Network controller [0280]: Qualcomm Atheros Device [168c:0042] (rev 30)
    Subsystem: Foxconn International, Inc. Device [105b:e09a]
    Kernel driver in use: ath10k_pci
[    7.100283] ath10k_pci 0000:03:00.0: pci irq msi interrupts 1 irq_mode 0 reset_mode 0
[    7.390307] ath10k_pci 0000:03:00.0: Direct firmware load for ath10k/cal-pci-0000:03:00.0.bin failed with error -2
[    7.390332] ath10k_pci 0000:03:00.0: Direct firmware load for ath10k/QCA9377/hw1.0/firmware-5.bin failed with error -2
[    7.390336] ath10k_pci 0000:03:00.0: could not fetch firmware file 'ath10k/QCA9377/hw1.0/firmware-5.bin': -2
[    7.390350] ath10k_pci 0000:03:00.0: Direct firmware load for ath10k/QCA9377/hw1.0/firmware-4.bin failed with error -2
[    7.390353] ath10k_pci 0000:03:00.0: could not fetch firmware file 'ath10k/QCA9377/hw1.0/firmware-4.bin': -2
[    7.390365] ath10k_pci 0000:03:00.0: Direct firmware load for ath10k/QCA9377/hw1.0/firmware-3.bin failed with error -2
[    7.390369] ath10k_pci 0000:03:00.0: could not fetch firmware file 'ath10k/QCA9377/hw1.0/firmware-3.bin': -2
[    7.390381] ath10k_pci 0000:03:00.0: Direct firmware load for ath10k/QCA9377/hw1.0/firmware-2.bin failed with error -2
[    7.390384] ath10k_pci 0000:03:00.0: could not fetch firmware file 'ath10k/QCA9377/hw1.0/firmware-2.bin': -2
[    7.390396] ath10k_pci 0000:03:00.0: Direct firmware load for ath10k/QCA9377/hw1.0/firmware.bin failed with error -2
[    7.390398] ath10k_pci 0000:03:00.0: could not fetch firmware (-2)
[    7.390401] ath10k_pci 0000:03:00.0: could not fetch firmware files (-2)
[    7.390404] ath10k_pci 0000:03:00.0: could not probe fw (-2)

이제 어떻게해야합니까 ??

답변:


15

드라이버에 누락 된 펌웨어가 필요합니다 :

ath10k / QCA9377 / hw1.0 / firmware-5.bin에 대한 직접 펌웨어로드가 오류 -2로 실패했습니다

이더넷, 테 더링 또는 가능한 모든 수단으로 인터넷에 연결되어 있으면 터미널을 열고 다음을 수행하십시오.

sudo apt-get update
sudo apt-get install git
git clone https://github.com/kvalo/ath10k-firmware.git
sudo mkdir /lib/firmware/ath10k/QCA9377
sudo mkdir /lib/firmware/ath10k/QCA9377/hw1.0
cd ath10k-firmware/QCA9377/hw1.0
sudo cp *  /lib/firmware/ath10k/QCA9377/hw1.0
cd /lib/firmware/ath10k/QCA9377/hw1.0
sudo mv firmware-5.bin_WLAN.TF.1.0-00267-1  firmware-5.bin

재부팅하면 무선이 작동합니다.


예 .... 제안한대로 ... 작동 중입니다 ... 감사합니다. Mr. YOU ROCK .... 여전히이 펌웨어가 누락 된 이유를 설명해 주시겠습니까 ... 미래의 지식이 될 것입니다 .... 당신이 원하는 때마다 ....
Mahabub Islam Prio

5
비교적 새로운 장치이며 모든 올바른 펌웨어는 아직 우분투 저장소의 Linux 펌웨어 로 만들지 않았습니다 . 나는 그것이 작동하는 것이 기쁘다.
chili555

그것은이 작동 만나서 다행 @ chili555 I 케일 파일 상류 보드 2.bin를 전송하지 왜 아무 생각이 없다, 그는 지금 2개월 그들을했다
Jeremy31
당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.