1

My wifi was suffering badly in the past week. Very slow speeds and lots of interruptions. I know found out that the problem was with the modem and not with Ubuntu.

In the mean time I used this answer to remove my intel driver and reinstall it. BUT it failed. It left me without a functional driver. I tried running modprobe, reinstall the kernel, copying the backup files of the drivers back, all to no avail.

Now I'm left without a network adapter, and without a functional driver.

How can I restore the system to its original state?

Background:

lspci -nnk | grep 0280 -A3
04:00.0 Network controller [0280]: Intel Corporation Centrino Wireless-N 2200 [8086:0891] (rev c4)
Subsystem: Intel Corporation Centrino Wireless-N 2200 BGN [8086:4222]

The network is unclaimed

*-network UNCLAIMED
   description: Network controller
   product: Centrino Wireless-N 2200
   vendor: Intel Corporation
   physical id: 0
   bus info: pci@0000:04:00.0
   version: c4
   width: 64 bits
   clock: 33MHz
   capabilities: pm msi pciexpress bus_master cap_list
   configuration: latency=0
   resources: memory:f3500000-f3501fff
don.joey
  • 28,662

1 Answers1

2

You installed backport-iwlwifi which evidently was incompatible in some way with your Ubuntu version. It was suggested that you uninstall it:

cd backport-iwlwifi 
sudo make uninstall 

Uninstalling the backport package allows the original in-kernel modules to reclaim your device.

chili555
  • 60,188