2

Every time i login this message appears i cant connect to internet on ubuntu.I tried disabling and reenabling network manager but it didnt worked.

03:00.0 Network controller [0280]: Intel Corporation Centarino Wireless-N 1000 [ Condor Peak] [8086:0083]
 Subsystem: Intel Corporation Centario Wireless-N1000 BGN [8086:1325]
Pilot6
  • 90,100
  • 91
  • 213
  • 324
user5441403
  • 33
  • 1
  • 1
  • 5

1 Answers1

0

It looks like the iwlwifi kernel module is not loaded.

Connect to internet an alternative way and run in terminal:

sudo apt-get install linux-generic-lts-utopic

and reboot.

If you can't connect to internet an alternative way, then download these files:

http://mirrors.kernel.org/ubuntu/pool/main/l/linux-lts-utopic/linux-image-3.16.0-51-generic_3.16.0-51.69~14.04.1_i386.deb
http://security.ubuntu.com/ubuntu/pool/main/l/linux-lts-utopic/linux-image-extra-3.16.0-51-generic_3.16.0-51.69~14.04.1_i386.deb
http://security.ubuntu.com/ubuntu/pool/main/l/linux-meta-lts-utopic/linux-headers-generic-lts-utopic_3.16.0.51.42_i386.deb

Copy them to your Ubuntu Home folder and run in terminal

sudo dpkg -i linux*.deb

Reboot.

If your wifi starts working, run:

sudo apt-get update
sudo apt-get install linux-generic-lts-utopic
sudo apt-get upgrade

You will have the kernel updated. If the wireless still does not work, run:

sudo tee /etc/modprobe.d/iwlwifi-opt <<< "options iwlwifi 11n_disable=1"

and reboot again.

Pilot6
  • 90,100
  • 91
  • 213
  • 324
  • 1
    http://security.ubuntu.com/ubuntu/pool/main/l/linux-meta-lts-utopic/linux-headers-generic-lts-utopic_3.16.0.51.42_i386.deb dosen't work!!!!! – pedram shabani Mar 20 '18 at 13:29