0

I am new to Linux, and I finally got 12.04 to dual boot with windows 8. My problem is that I do not know how to get wireless card to connect. It is not detecting any networks, and I have heard that getting Ubuntu to recognize the card is tough with windows 8.

It is a new laptop, and I do not know how to find the wireless card info. I have tried to find additional drivers, but nothing proprietary is showing up. Any help would be appreciated on where to go from here.

lspci | grep Network shows:

02:00.0 Network controller: Realtek Semiconductor Co., Ltd. RTL8188EE Wireless Network Adapter (rev 01)
Braiam
  • 69,112

2 Answers2

0

It seems that this issue is fixed with Ubuntu 13.10. (source: http://forum.ubuntu-fr.org/viewtopic.php?pid=15059781). (Sorry, my source is in French.

Before installing Ubuntu 13.10, you may try install a more recent version of the kernel.

cochisebt
  • 320
0

Please try a driver parameter:

sudo modprobe -r rtl8188ee
sudo modprobe rtl8188ee swenc=1

If it helps, we can write a quick file and make it permanent.

I also suggest you experiment with wireless N turned off in the router. Does it connect and remain stable?

f you are still having trouble, let's try an even newer driver. I suggest you download this to your desktop: https://www.kernel.org/pub/linux/kernel/projects/backports/stable/v3.13-rc8/backports-3.13-rc8-1.tar.gz Right-click it and select 'Extract Here.' Now open a terminal and do:

cd ~/Desktop/backports-3.13-rc8-1/
make defconfig-rtlwifi
make
sudo make install
sudo modprobe -r rtl8188ee && sudo modprobe rtl8188ee

Also, please be sure you installed the firmware as I said in the link.

chili555
  • 61,330