Alienware 17 R4 Ubuntu 16.04 WiFi 驱动程序

Ken*_*Low 7 wireless alienware 16.04

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

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

以下是我从 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**
Run Code Online (Sandbox Code Playgroud)

我当然可以使用我的以太网,因此我相信我有 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]
Run Code Online (Sandbox Code Playgroud)

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

hello@world:~$ uname -r
4.13.0-37-generic
Run Code Online (Sandbox Code Playgroud)

感谢大家阅读并为我的 wifi 工作提供帮助!

PS:我尝试了此处发现的建议,Wifi 在 Alienware 17 R4 上的 Ubuntu 16.04 LTS中不起作用,但对我不起作用。

Jer*_*y31 8

Intel 最近将 VID 和 PID 添加到他们的 backports 中,以安装

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

内核更新后,您将需要

cd backport-iwlwifi
make clean
make defconfig-iwlwifi-public
make -j4
sudo make install
Run Code Online (Sandbox Code Playgroud)