Alienware 17 R4 Ubuntu 16.04 WiFi 驱动程序

Alienware 17 R4 Ubuntu 16.04 WiFi 驱动程序

我在配备 Killer 1550 WiFi 网卡的新 Alienware 17 R4 笔记本电脑上安装了 Ubuntu 16.04。目前,我正在使用 LAN 电缆连接互联网,但非常想使用我的 WiFi 卡。我已经测试过它在 Windows 10 中运行良好。

如何在 Alienware 17 R4 上安装 Killer 1550?

以下是我从 sudo lshw -C network 输出的输出:

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**

我当然可以使用我的以太网,因此我相信我确实有 Qualcomm Atheros 驱动程序。进一步探测我的网络控制器(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]

如果这可能是任何有用的信息,我当前的Linux内核是:

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

感谢大家的阅读,并帮助我使用 Wi-Fi!

PS:我尝试了在这里找到的建议Alienware 17 R4 上的 Ubuntu 16.04 LTS 中 Wifi 无法使用但它对我不起作用。

答案1

英特尔最近将 VID 和 PID 添加到其反向移植中,以便安装

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
重新启动,如果无线不工作,dmesg | grep iwl | nc termbin.com 9999请在终端中将终端的 URL 发布在评论中,因为我们需要从上游获取固件

内核更新后你需要

cd backport-iwlwifi
make clean
make defconfig-iwlwifi-public
make -j4
sudo make install

相关内容