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,341
  • 38
  • 97
  • 191
John Suma
  • 1
  • 1
  • Note you may be able to use [`checkinstall`](https://help.ubuntu.com/community/CheckInstall) instead. – Wilf Feb 23 '15 at 17:34

1 Answers1

0

Should be easy as

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

Reboot.

Eric Carvalho
  • 53,609
  • 102
  • 137
  • 162
Jeremy31
  • 12,262
  • 9
  • 57
  • 113