Alienware 17 R4 Ubuntu 16.04 driver WiFi

5

Instalei o Ubuntu 16.04 no meu novo laptop Alienware 17 R4 que vem com a placa de rede Killer 1550 WiFi. Atualmente eu estou correndo em cabo LAN para se conectar à internet, mas gostaria muito de fazer uso do meu cartão WiFi. Eu testei que funciona bem no Windows 10.

Como obtenho o Killer 1550 instalado no Alienware 17 R4?

As seguintes são as minhas saídas da rede sudo lshw -C:

hello@world:~$ sudo lshw -C network

*-network
description: Ethernet interface
product: Qualcomm Atheros
vendor: Qualcomm Atheros
physical id: 0
bus info: pci@0000:3c:00.0
logical name: enp60s0
version: 10
serial: 10:65:30:fd:d6:35
size: 100Mbit/s
capacity: 1Gbit/s
width: 64 bits
clock: 33MHz
capabilities: pm pciexpress msi msix bus_master cap_list ethernet physical tp 10bt 10bt-fd 100bt 100bt-fd 1000bt-fd autonegotiation
configuration: autonegotiation=on broadcast=yes driver=alx duplex=full ip=192.168.1.92 latency=0 link=yes multicast=yes port=twisted pair speed=100Mbit/s
resources: irq:16 memory:dd300000-dd33ffff ioport:d000(size=128)

***-network UNCLAIMED
description: Network controller
product: Intel Corporation
vendor: Intel Corporation
physical id: 0
bus info: pci@0000:3d:00.0
version: 29
width: 64 bits
clock: 33MHz
capabilities: pm msi pciexpress msix cap_list
configuration: latency=0
resources: memory:dd200000-dd203fff**

Eu certamente posso usar minha ethernet, portanto acredito que eu tenha o driver Qualcomm Atheros. Sondando ainda mais no meu controlador de rede (placa WiFi?):

hello@world:~$ lspci -knn | grep Net -A2
3d:00.0 Network controller [0280]: Intel Corporation Device [8086:2526] (rev 29)
Subsystem: Bigfoot Networks, Inc. Device [1a56:1550]
3e:00.0 Non-Volatile memory controller [0108]: Toshiba America Info Systems Device [1179:0116]
Subsystem: Toshiba America Info Systems Device [1179:0001]

Caso isso possa ser de alguma informação útil, meu kernel atual do linux é:

hello@world:~$ uname -r
4.13.0-37-generic

Obrigado a todos pela leitura e sua gentil assistência em fazer meu wifi funcionar!

PS: Eu tentei sugestões encontradas aqui Wifi não funciona no Ubuntu 16.04 LTS em um Alienware 17 R4 mas não funciona para mim.

    
por Kenny Low 18.03.2018 / 04:54

1 resposta

6

A Intel adicionou recentemente o VID e o PID aos seus backports, para instalar

sudo apt-get install git
git clone https://git.kernel.org/pub/scm/linux/kernel/git/iwlwifi/backport-iwlwifi.git
cd backport-iwlwifi
make defconfig-iwlwifi-public
sed -i 's/CPTCFG_IWLMVM_VENDOR_CMDS=y/# CPTCFG_IWLMVM_VENDOR_CMDS is not set/' .config
make -j4
sudo make install
Reinicialize e se o wireless não funcionar, no terminal dmesg | grep iwl | nc termbin.com 9999 e poste o URL do terminal em um comentário como fizemos precisar obter firmware do upstream

Após uma atualização do kernel, você precisará

cd backport-iwlwifi
make clean
make defconfig-iwlwifi-public
make -j4
sudo make install
    
por Jeremy31 25.04.2018 / 22:39