Linux : How to install driver for 600Mbps Dual Band Wifi USB Adapter
Bought this 600Mbps Dual Band 2.4G / 5G Hz Wireless Lan USB PC WiFi Adapter 802.11AC from Lazada and found out that the accompanying CD-ROM does not provide ANY DRIVER AT ALL for Linux. There are two folders under the /Linux
directory, but the trouble is that under the both /driver
directories ... there is no single file to execute or view at all. This explained why attempts to execute the ./install.sh
script will fail.
Fortunately, the names of the directories provided clue to which the hardware chipset is and after Googling for RTL8821CU, I found this driver on github.com.
https://github.com/brektrou/rtl8821CU
Follow the instructions at https://github.com/brektrou/rtl8821CU and it should install the driver for your Linux box. You may need to reboot after installation to get the driver working.
Hope this helps!
See also : Linux : How to set root password in Linux Mint
By Adam Ng
IF you gain some knowledge or the information here solved your programming problem. Please consider donating to the less fortunate or some charities that you like. Apart from donation, planting trees, volunteering or reducing your carbon footprint will be great too.
Advertisement
Tutorials
+22.9k Golang : Round float to precision example
+13.4k Golang : How to calculate the distance between two coordinates using Haversine formula
+11.9k How to tell if a binary(executable) file or web application is built with Golang?
+9.4k nginx: [emerg] bind() to 0.0.0.0:80 failed (98: Address already in use)
+30.6k Golang : How to verify uploaded file is image or allowed file types
+19.8k Golang : Set or Add HTTP Request Headers
+9.9k Golang : Resumable upload to Google Drive(RESTful) example
+40.8k Golang : Convert to io.ReadSeeker type
+7.7k SSL : How to check if current certificate is sha1 or sha2 from command line
+20.7k Golang : Pipe output from one os.Exec(shell command) to another command
+17.2k Golang : Get input from keyboard
+19.7k Golang : Close channel after ticker stopped example