TP-LINK wireless network card official does not provide linux driver, but in fact the wireless network card driver mainly depends on the chip model used by the wireless network card, in this way, we can download the corresponding driver from the chip vendor's official website (compile and install it by ourselves ). The system does not seem to have any response when a wireless network card is inserted. Do not worry, enter the command lsusb on the terminal to output all us
TP-LINK wireless network card official does not provide linux driver, but in fact the wireless network card driver mainly depends on the chip model used by the wireless network card, in this way, we can download the corresponding driver from the chip vendor's official website (compile and install it by ourselves ).
The system does not seem to have any response when a wireless network card is inserted. Do not worry, enter the command on the terminal
Lsusb
All usb devices will be output, one of which is
Bus 001 Device 004: ID 148f: 5370 Ralink Technology, Corp.
This indicates that the wireless network card uses the Ralink chip, its ID number is 148f, and the model is 5370. Download the driver from the official Ralink website. The corresponding model is RT8070, RT3070, RT3370, RT5370, or RT5372. Decompress the package. (to decompress the package twice, we recommend that you right-click the package twice to decompress the package. The file name is long and can be renamed to shorten the package ).
Next, cd goes in, and then cd OS/linux. There is a config under it. open the mk file in the editor and find HAS_WPA_SUPPLICANT and HAS_NATIVE_WPA_SUPPLICANT_SUPPORT. set their values to "y" (without quotation marks ).
Decompress the package to the decompressed directory and use the following two commands to compile and install the driver (root permission required ):
Make
Make install
If no error is reported, the driver is installed.
Enter the sudo modprobe rt5370sta command to load the driver module. Wireless Nic running! Note that the system must be reloaded every time it is started.