【转】install intel wireless 3165 driver for ubuntu 14.04.3

【转】install intel wireless 3165 driver for ubuntu 14.04.3

Ubuntu 14.04.3 with 3.19 kernel can’t drive the new Intel Wireless 3165 AC with firmware version 13.
This is about how to install the driver mannually.

Today I changed a new Dell vastro 5000 series laptop with the Intel 3165 Wireless AC.
After os installed, I find I can’t find the wireless network.

 $ lshw -C network
*-network UNCLAIMED
description: Network controller
product: Intel Corporation
vendor: Intel Corporation
physical id:
bus info: pci@::00.0
version:
width: bits
clock: 33MHz
capabilities: pm msi pciexpress cap_list
configuration: latency=
resources: memory:df200000-df201fff $ lspci
:00.0 Network controller: Intel Corporation Device (rev )

As iwlwifi official site shows, Intel® Wireless 3165 (starting from firmware XX.XX.13.0 and kernel 4.1).
Thanks God we have backports, which provide drivers released on newer kernels backported for usage on older kernels.

Mannul Install

  1. Download & compile the driver. Maybe the latest stable version is better. But I didn’t use it.
 sudo apt-get update
sudo apt-get install linux-headers-generic build-essential
wget https://www.kernel.org/pub/linux/kernel/projects/backports/2015/11/20/backports-20151120.tar.gz
tar -zxvf backports-.tar.gz
cd backports-
make defconfig-iwlwifi
make
sudo make install
  1. Verify that you have the latest firmware:
    • iwlwifi-7265D-13.ucode
    • iwlwifi-7265-13.ucode:
 ls /lib/firmware | grep 
  1. Make copies:
 cd /lib/firmware
sudo cp iwlwifi-7265D-.ucode iwlwifi--.ucode
sudo cp iwlwifi--.ucode iwlwifi--.ucode
注:实际安装中我执行的是以下命令
  cd ./Downloads/iwlwifi--ucode-25.30.13.0 #下载路径
sudo cp iwlwifi-7265D-.ucode /lib/firmware
sudo cp iwlwifi--.ucode /lib/firmware
  1. Reboot. Your wireless should be working.

Hints

You will need to recompile every time installs a new kernel:

 cd backports-
make clean
make defconfig-iwlwifi
make
sudo make install
上一篇:解决:Host xxx.xxx.xxx.xxx is blocked because of many connection errors.


下一篇:Spring中ApplicationContext和beanfactory区别