Ubuntu – Install Intel AC 8260 wireless drivers offline

14.04driversintel-wirelessiwlwifinetworking

As my laptop does not have Ethernet port, to set up wireless, I need to install drivers offline.

My Ubuntu version is 14.04.3, and kernel version is 3.19.0-25-generic.

Output of the command:
lspci -knn | grep Net -A2:

is:

 01:00.0 Network controller [0280]: Intel Corporation Wireless 8260 [8086:24f3] (rev 3a)
    Subsystem: Intel Corporation Dual Band Wireless-AC 8260 [8086:0010] 

Since here:

http://ubuntuforums.org/showthread.php?t=2305426

it is suggested to try following these steps:

Intel wireless 8260 – unclaimed network

I tried, but without any success.

Now I am not sure what to try next. I am not Ubuntu expert, and would appreciate any help.

Thanks a lot in advance.

Best Answer

The problem is that kernel 3.19 does not support firmware version 13 that you can get for Ubuntu 14.04.

The easiest way to do offline is to install Ubuntu 15.10.

The adapter should work without any effort.

You can get it working on Ubuntu 14.04, but you will need to upgrade the kernel and the firmware. I can give you directions.

But you will have to download some packages using another computer and then install them to Ubuntu.

Install to Ubuntu 14.04

Download these files:

http://mirrors.kernel.org/ubuntu/pool/main/l/linux-meta-lts-wily/linux-headers-generic-lts-wily_4.2.0.42.34_amd64.deb
http://mirrors.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-42-generic_4.2.0-42.49~14.04.1_amd64.deb
http://mirrors.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-headers-4.2.0-42_4.2.0-42.49~14.04.1_all.deb
http://mirrors.kernel.org/ubuntu/pool/main/l/linux-meta-lts-wily/linux-generic-lts-wily_4.2.0.42.34_amd64.deb
http://mirrors.kernel.org/ubuntu/pool/main/l/linux-meta-lts-wily/linux-image-generic-lts-wily_4.2.0.42.34_amd64.deb
http://mirrors.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-image-4.2.0-42-generic_4.2.0-42.49~14.04.1_amd64.deb
http://mirrors.kernel.org/ubuntu/pool/main/l/linux-lts-wily/linux-image-extra-4.2.0-42-generic_4.2.0-42.49~14.04.1_amd64.deb
http://mirrors.kernel.org/ubuntu/pool/main/l/linux-firmware/linux-firmware_1.127.22_all.deb

Copy the files to your home folder and run in terminal:

sudo dpkg -i linux*.deb

Reboot and test the Wi-Fi.

Related Question