DEV Community

parmarjatin4911@gmail.com
parmarjatin4911@gmail.com

Posted on

1

how to install adnet 802.11n wifi adapter driver on #Linux #ubuntu?

how to install adnet 802.11n wifi adapter driver?

sort cut code on Terminal(ctrl+alt+t)

First check your USB configuration by typing <u>lsusb </u>in your terminal and check it .

If your USB configuration is this 0bda:f179 Then you can
try this following commands...

Step- 1

terminal

sudo apt-get update && sudo apt-get upgrade && sudo apt-get remove

install :

sudo apt-get install build-essential git dkms && git clone https://github.com/kelebek333/rtl8188fu && sudo dkms add ./rtl8188fu && sudo dkms build rtl8188fu/1.0 && sudo dkms install rtl8188fu/1.0 && sudo cp ./rtl8188fu/firmware/rtl8188fufw.bin /lib/firmware/rtlwifi/ &&

Run following commands for disable power management and plugging/replugging issues:

sudo mkdir -p /etc/modprobe.d/ && sudo touch /etc/modprobe.d/rtl8188fu.conf && echo "options rtl8188fu rtw_power_mgnt=0 rtw_enusbss=0" | sudo tee /etc/modprobe.d/rtl8188fu.conf

How to uninstall :

sudo dkms remove rtl8188fu/1.0 --all

sudo rm -f /lib/firmware/rtlwifi/rtl8188fufw.bin

sudo rm -f /etc/modprobe.d/rtl8188fu.conf

Hostinger image

Get n8n VPS hosting 3x cheaper than a cloud solution

Get fast, easy, secure n8n VPS hosting from $4.99/mo at Hostinger. Automate any workflow using a pre-installed n8n application and no-code customization.

Start now

Top comments (0)

Sentry image

See why 4M developers consider Sentry, “not bad.”

Fixing code doesn’t have to be the worst part of your day. Learn how Sentry can help.

Learn more

👋 Kindness is contagious

Please leave a ❤️ or a friendly comment on this post if you found it helpful!

Okay