Raspberry Pi with RTL8188CUS 802.11n wifi adapter – Update

I’ve actually been playing around with my Realtek RTL8188CUS wifi adapter and found that the configuration of the wifi adapter without wpa_supplicant seems to be a better way to go.

The information I found below was taken directly from the source Far Robotics Website. Thanks to those folks for posting the 3 methods below;

Installing rtl8188cus and rtl8188eu based wifi adaptors for raspbian without using wpa_supplicant.

Edit the file /etc/network/interfaces using the following format for networks with WPA/WPA2 security. Use the command sudo nano /etc/network/interfaces to open and edit the file. Exit the editor and save the file using keys cntl-X, Y, Enter.  Enclose Your-Network-Name and Your-Network-Password within quotation marks as in the example below.

auto lo

iface lo inet loopback
iface eth0 inet dhcp

allow-hotplug wlan0
iface wlan0 inet dhcp
wpa-ssid "Your-Network-Name"
wpa-psk "Your-Network-Password"

Edit the file /etc/network/interfaces using the following format for networks using WEP security. Use the command sudo nano /etc/network/interfaces to open and edit the file. Exit the editor and save the file using keys cntl-X, Y, Enter. Do not use quotation marks around Your-Network-Name and Your-Network-Password.

auto lo

iface lo inet loopback
iface eth0 inet dhcp

allow-hotplug wlan0
iface wlan0 inet dhcp
wireless-essid Your-Network-Name
wireless-key Your-Network-Password

Edit the file /etc/network/interfaces using the following format for networks using no security. Use the  command sudo nano /etc/network/interfaces to open and edit the file. Exit the editor and save the file using keys cntl-X, Y, Enter. Do not use quotation marks around Your-Network-Name.

auto lo

iface lo inet loopback
iface eth0 inet dhcp

allow-hotplug wlan0
iface wlan0 inet dhcp
wireless-essid Your-Network-Name

If you have success and/or failure, be sure to post a comment. Feedback is always most welcome.

Comments

3 responses to “Raspberry Pi with RTL8188CUS 802.11n wifi adapter – Update”

  1. Pat Avatar
    Pat

    Thanks for the write up. Been looking for an hour for a solution to connect the Netis WF2111 usb wifi dongle to Raspbian. The default WIFI Config gui does not work and the default lines using wpa_supplicant failed as well. Put in the lines above and it fired right up.

  2. donald Avatar
    donald

    Hi there, I found your site by way of Google at the same time as
    looking for a similar matter, your site got here up, it appears
    great. I have bookmarked it in my google bookmarks.

    Hi there, just was alert to your weblog via Google, and found that it’s really informative.
    I am going to be careful for brussels. I’ll be grateful in case you continue this in future.
    Lots of people will likely be benefited out of your writing.
    Cheers!

  3. Bettye Avatar

    Appreciating the commitment you put into your site and detailed information you present.

    It’s nice to come across a blog every once in a while that isn’t the same out of date rehashed information.
    Fantastic read! I’ve saved your site and I’m adding
    your RSS feeds to my Google account.

Leave a Reply

Your email address will not be published. Required fields are marked *