Rtl8188eu Driver

Rtl8188eu

NOTE: If you’re using Raspbian 2015.01 or later, the Raspberry Pi kernel 3.18 now includes this driver—you don’t need to compile anything and this tutorial is now irrelevant!

To find the latest driver for your computer we recommend running our Free Driver Scan. Realtek RTL8188FTV Wireless LAN 802.11n USB 2.0 Network Adapter - Driver Download. Vendor: Realtek Semiconductor Corp. Having a hard time getting RTL8188EU WiFi dongle to work on orange pi pc 2. I’ve spent weeks trying to figure this out reading on the internet and a few posts on this forum. Tried installing several WiFi drivers including a few drivers from GitHub.

Raspberry Pi enthusiasts like to use Realtek 8188eu-based Wi-Fi adapters. Known as “micro” Wi-Fi adapters, they are small and inexpensive. For example, the TP-LINKWN725N V2 can be found for under $20 (the V1 and V3 use different chipsets. Thanks for making everything confusing, TP-LINK!).

As of October 2014 and Linux 3.12.29+, the driver for this Wi-Fi adapter isn’t available in the Raspberry Pi Linux kernel, so these Wi-Fi adapters are not supported out-of-the-box, despite otherwise you may find on the Internet. Definitely, they don’t work in a plug-and-play manner.

You can get these adapters to work by using an out-of-tree driver (i.e. a driver not included with the Linux kernel). People on the Internet have resorted to doing all these silly things like downloading random kernel modules or compiling the vendor Linux kernel trees from scratch trying to get this driver to work. You’re probably reading this article because you, like me, thought it was silly to chase files around on some random Internet forum.

The source code for the 8188eu driver is available on GitHub. Rather than trying to look for random files and hope they work, you can keep the source for the module on your Raspberry Pi and recompile the module as needed. Below are copy-and-pastable instructions to do this on Raspbian.

Make sure you have a compiler, etc installed.

Download the source code for the driver. I prefer to put source code for stuff like this somewhere convenient in my home directory, like ~/src/drivers/.

Driver

Now you have the source code for the driver, you need to get the source code for the kernel running on the Raspberry Pi. Finding the source code for the currently-running kernel on the Raspberry Pi can be a pain. I like to use Hexxeh’s rpi-source tool, which you can download, install, and run:

If you get an error about GCC, use the “skip-gcc” flag:

Now, compile the driver:

Rtl8188eu Driver Windows 10

Rtl8188eu

Your Wi-Fi should be working, though you’ll need to configure it (configuring it is out of scope for this article).

Rtl8188eu Driver Ubuntu

You can double check whether the adapter is recognized by looking at the output of (assuming you’ve only one Wi-Fi adapter, it will be named wlan0):

Driver

If you see nothing, the driver may have been installed wrong or your Wi-Fi adapter not working. If you see something like:

Then you are good to go!

Driver

All of this seemed like a lot of work compared to hunting down the file, right? Except, it isn’t: when you update the kernel on your Raspberry Pi and reboot, the Wi-Fi will stop working because it will no longer have an appropriate driver. Rather than having to go on a witch hunt for files, you can simply recompile the driver again while offline:

The above is all you need to turn your Raspberry Pi into a working Wi-Fi client.

Rtl8188eu Driver Windows 7 32 Bit

If you want to use your shiny new Wi-Fi enabled Raspberry Pi as an access point, there’s a gotcha with Realtek Wi-Fi adapters (I’ve found this true of both the 8188eu and 8192cu chips): they won’t work with hostapd as included with Raspbian or Arch Linux. You’ll need to use a custom hostapd, such as this one posted by Jens Segers, to get a working access point.