Placa WiFi na nova compilação não é reconhecida pelo Linux Mint 17.3

2

Acabei de concluir uma compilação de área de trabalho e instalei o Linux Mint 17.3 e a placa PCIe WiFi não está sendo detectada. O cartão é um Gigabyte GC-WB867D-I .

Não há nada que reconheça que o dispositivo esteja presente, mas está faltando um driver, mas é como se não houvesse nada.

Eu usei Ethernet para executar todas as atualizações recomendadas no centro de software e abri o gerenciador de drivers e ele me disse que nenhum dispositivo foi instalado. Eu também tentei mover para um slot PCIe diferente na placa-mãe e encontrei os mesmos sintomas.

Eu também li na Amazon reviews do cartão WiFi que ele usa o chip Intel 7260AC, então baixei o driver iwlwifi que encontrei no site da Intel e cp d em /library/firmware e reiniciei. Eu não sei se isso faz alguma coisa ou não.

Eu também executei sudo apt-get install linux-firmware e sudo apt-get install linux-firmware-nonfree .

Finalmente, aqui estão os resultados de lspci

lspci
00:00.0 Host bridge: Intel Corporation Sky Lake Host Bridge/DRAM Registers (rev 07)
00:02.0 VGA compatible controller: Intel Corporation Sky Lake Integrated Graphics (rev 06)
00:14.0 USB controller: Intel Corporation Sunrise Point-H USB 3.0 xHCI Controller (rev 31)
00:14.2 Signal processing controller: Intel Corporation Sunrise Point-H Thermal subsystem (rev 31)
00:16.0 Communication controller: Intel Corporation Sunrise Point-H CSME HECI #1 (rev 31)
00:17.0 SATA controller: Intel Corporation Sunrise Point-H SATA controller [AHCI mode] (rev 31)
00:1b.0 PCI bridge: Intel Corporation Sunrise Point-H PCI Root Port #17 (rev f1)
00:1b.2 PCI bridge: Intel Corporation Sunrise Point-H PCI Root Port #19 (rev f1)
00:1c.0 PCI bridge: Intel Corporation Sunrise Point-H PCI Express Root Port #1 (rev f1)
00:1c.2 PCI bridge: Intel Corporation Sunrise Point-H PCI Express Root Port #3 (rev f1)
00:1c.3 PCI bridge: Intel Corporation Sunrise Point-H PCI Express Root Port #4 (rev f1)
00:1c.4 PCI bridge: Intel Corporation Sunrise Point-H PCI Express Root Port #5 (rev f1)
00:1d.0 PCI bridge: Intel Corporation Sunrise Point-H PCI Express Root Port #9 (rev f1)
00:1d.4 PCI bridge: Intel Corporation Sunrise Point-H PCI Express Root Port #13 (rev f1)
00:1f.0 ISA bridge: Intel Corporation Sunrise Point-H LPC Controller (rev 31)
00:1f.2 Memory controller: Intel Corporation Sunrise Point-H PMC (rev 31)
00:1f.3 Audio device: Intel Corporation Sunrise Point-H HD Audio (rev 31)
00:1f.4 SMBus: Intel Corporation Sunrise Point-H SMBus (rev 31)
02:00.0 PCI bridge: ASMedia Technology Inc. ASM1083/1085 PCIe to PCI Bridge (rev 04)
05:00.0 Ethernet controller: Realtek Semiconductor Co., Ltd. RTL8111/8168/8411 PCI Express Gigabit Ethernet Controller (rev 15)
06:00.0 Network controller: Intel Corporation Wireless 8260 (rev 3a)

Aqui está a lista de peças completa da versão:

A saída de lspci -knn | grep Net é:

06:00.0 Network controller [0280]: Intel Corporation Wireless 8260 [8086:24f3] (rev 3a) Subsystem: Intel Corporation Device [8086:1010]
    
por Ben Mordecai 22.04.2016 / 01:09

2 respostas

3

De acordo com wireless.wiki , o dispositivo Intel® Wireless 8260 é suportado pelo > kernel 4.1 e mais tarde,

Instale build-essential e linux headers

faça o download de iwlwifi-8000-ucode-25.30.13.0.tgz de aqui Digite o seguinte comando:

tar -zxvf iwlwifi-8000-ucode-25.30.13.0.tgz
cd iwlwifi-8000-ucode-25.30.13.0
sudo cp iwlwifi*.ucode /lib/firmware/

Faça o download do backport de aqui exemplo:

wget https://www.kernel.org/pub/linux/kernel/projects/backports/stable/v4.3/backports-4.3-1.tar.gz

Descompacte-o e compile o módulo iwlwifi :

cd backports-4.3-1
make defconfig-iwlwifi
make
sudo make install

Reinicie

    
por 22.04.2016 / 13:30
0

Eu estava tendo problemas para compilar:

make defconfig-iwlwifi

então eu tive que adicionar:

sudo apt-get install build-essential

que resolveu meus problemas e a reinicialização fez tudo funcionar.

    
por 08.05.2016 / 22:19