This step-by-step guide is designed for beginners who want to use the Realtek RTL8188FTV WiFi adapter on Linux. The instructions were tested on Ubuntu 22.04.1 LTS x86_64 with Linux 5.15.0-58-generic. If you're using a different distro or version, some steps may vary. Feel free to ask any questions if needed.
- Plug in the Realtek RTL8188FTV WiFi adapter into one of the USB ports of your Linux PC.
- Boot up your Linux PC.
- Click the Grid button (9 dots) to open the Application drawer.
- Find and click "Terminal" to open it.
- A Terminal window with a black background and white text will appear, similar to the Windows Command Prompt.
- In Terminal, enter
ip a
and press Enter. - Look for a network interface with a prefix "wlx".
- Alternatively, enter
lsusb
in Terminal and press Enter. - Look for "Realtek Semiconductor Corp. RTL8188FTV 802.11b/g/n 1T1R 2.4G WLAN Adapter".
- Enter
sudo apt update
in Terminal and press Enter. - Enter
sudo apt upgrade
in Terminal and press Enter. - Enter
sudo apt install net-tools
in Terminal and press Enter.
Kelebek is the contributor who wrote the driver for the adapter. You can find more details here:
- Enter
sudo add-apt-repository ppa:kelebek333/kablosuz
in Terminal and press Enter. - Enter
sudo apt-get update
in Terminal and press Enter.
- Enter
sudo apt-get install rtl8188fu-dkms
in Terminal and press Enter. - (Optional) To remove the driver, enter
sudo apt purge rtl8188fu-dkms
in Terminal and press Enter.
Refer to the GitHub repository for more information.
- Enter
echo "options rtl8188fu rtw_ips_mode=0 | sudo tee /etc/modprobe.d/rtl8188fu.conf
in Terminal and press Enter. - Enter
sudo modprobe -rv rtl8188fu && sudo modprobe -v rtl8188fu
in Terminal and press Enter.
If MAC address of your dongle is changed after every reboot you may set it with this command:
echo "options rtl8188fu rtw_ips_mode=0 rtw_initmac="xx:xx:xx:xx:xx:xx" | sudo tee /etc/modprobe.d/rtl8188fu.conf
Change "xx:xx:xx:xx:xx:xx" with needed MAC and press Enter.
- Click the Power menu (top right of the screen).
- Choose Restart.
- Click Grid button > Settings > Wi-Fi.
- Turn ON Wi-Fi if it's off.
- Select the network and enter the password.
That's it! You should now be able to use the Realtek RTL8188FTV WiFi adapter on your Linux PC.
If you want to remove the driver and the PPA, follow these steps:
- Open Terminal.
- Enter
sudo apt purge rtl8188fu-dkms
in Terminal and press Enter. - Enter
sudo add-apt-repository --remove ppa:kelebek333/kablosuz
in Terminal and press Enter. - Reboot your PC to complete the removal.
That's it! You should now be able to use the Realtek RTL8188FTV WiFi adapter on your Linux PC.