0

How can I revert the following: (running Kubuntu 14.10)

This is what I did before my WiFi and LAN both got their untimely death.

I did a:

sudo apt-get install --reinstall linux-headers-generic build-essential

After that, I compiled and install the driver as follows -

  1. Download the latest backported driver package from here
  2. Copy the downloaded tar.bz2 package to your Ubuntu Desktop > Right-click > Extract here.
  3. Open a terminal and run the following commands one-by-one:

    cd Desktop/backports-3.18-rc1-1
    make defconfig-ath9k
    make
    sudo make install
    
Fabby
  • 34,259

1 Answers1

0

Should be easy as

cd Desktop/backports-3.18-rc1-1
sudo make uninstall

Reboot.

Eric Carvalho
  • 54,385
Jeremy31
  • 12,602
  • 10
  • 58
  • 114