Alienware 17 R4 Ubuntu 16.04 WiFi驱动程序

我在我的新款Alienware 17 R4笔记本电脑上安装了Ubuntu 16.04,该笔记本电脑配备了Killer 1550 WiFi网卡。 目前我正在使用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 

感谢大家的阅读和亲切的帮助,让我的无线网络工作!

PS:我试过这里找到的建议Wifi不能在Ubuntu 16.04 LTS上使用Alienware 17 R4,但它对我不起作用。

英特尔最近将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 dmesg | grep iwl | nc termbin.com 9999 dmesg | grep iwl | nc termbin.com 9999并在评论中发布终端的URL,因为我们需要从上游获取固件

内核更新后,您需要

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