Skip to content

Instantly share code, notes, and snippets.

@rabssm
Last active October 11, 2022 09:12
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save rabssm/03ed8eedd0c1ff945ae70221da338c0b to your computer and use it in GitHub Desktop.
Save rabssm/03ed8eedd0c1ff945ae70221da338c0b to your computer and use it in GitHub Desktop.
Install driver for Realtek 8188fu Wifi USB device on Raspberry Pi Stretch - hardware ID Realtek 0bda:f179
# Download correct driver from http://downloads.fars-robotics.net/wifi-drivers/8188fu-drivers/
# For example, for kernel version 4.14.79, download the following driver:
wget http://downloads.fars-robotics.net/wifi-drivers/8188fu-drivers/8188fu-4.14.79-1159.tar.gz
# Extract the driver
tar zxvf 8188fu-4.14.79-1159.tar.gz
# Install the driver
sudo ./install.sh
# Then add the following lines to /etc/network/interfaces to enable the Wifi dongle
auto lo
iface lo inet loopback
iface eth0 inet dhcp
allow-hotplug wlan0
# auto wlan0
iface wlan0 inet manual
wpa-roam /etc/wpa_supplicant/wpa_supplicant.conf
iface home inet dhcp
iface default inet dhcp
# Finally reboot the pi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment