1

Today, I install Ubuntu 14.04 version. And I want to connect my wifi. But the system cannot find my wifi card in the additional drivers, by the way my additional drivers window is empty. How to solve this problem?

lspci -nn | grep 0280

shows ...

Realtek Semiconduct Co., ltd. RTL8192EE PCI e wireless Neteork Adapter[10ec:818b]
Rinzwind
  • 299,756
Jizhou
  • 31

1 Answers1

2

Your device uses the driver rtl8192ee which is not included in Ubuntu 14.04 and must be compiled from source code. Please get a temporary internet connection; ethernet or tethered or however. Open a terminal and do:

sudo apt-get install linux-headers-generic build-essential git
git clone https://github.com/lwfinger/rtlwifi_new.git
cd rtlwifi_new
make
sudo make install
sudo modprobe rtl8192ee

Your wireless should be working now. Please let us know how it goes as we will probably have one more step.

chili555
  • 60,188
  • Oh . When I use this way . My ubuntu was totally corrupt. Coming with a black screen writing kernel panic-not syncing fatal exception in interruption. – Jizhou Sep 14 '14 at 02:20