Solve the problem of installing Tenda U12 wireless network card driver on Centos7

Solve the problem of installing Tenda U12 wireless network card driver on Centos7

Solution process:

Method 1:

The default kernel version of CentOS7.3 is lower, which is 3.10.0-514.el7.x86_64.

Whether you use the driver provided by Tenda or the driver on github (link https://github.com/gnab/rtl8812au), you need to upgrade the kernel.

The author tried upgrading the kernel (to 4.1.8), installing modules (8812au.ko), etc., and did it several times and spent several nights, but in the end, failed.

Method 2:

Replaced CentOS7.3 with Ubuntu 18.04.3;

After installing Ubuntu, reboot, the system reports an error message "no such partition" and enters grub rescue.

Refer to https://itsfoss.com/solve-error-partition-grub-rescue-ubuntu-linux/ to solve the problem;

Then copy the driver downloaded from GitHub (https://github.com/gnab/rtl8812au) to the USB drive and unzip it.

Then enter the unzipped directory and execute the following command

$ make
$ sudo insmod 8812au.ko

At this time, click the upper right corner of the screen and select Wireless Network, you can see that many Wi-Fi networks have been successfully displayed! Chicken jelly!

Continue executing the following command:

$ sudo cp 8812au.ko /lib/modules/$(uname -r)/kernel/drivers/net/wireless
$ sudo depmod

Click the wifi you want to connect to, enter the password, and the connection is successful. ping 223.5.5.5 , success!

reboot Restart the machine. After restart, WiFi can be connected automatically. Great!

Summarize

The above is the editor's introduction to solving the problem of installing Tenda U12 wireless network card driver on Centos7. I hope it will be helpful to everyone. If you have any questions, please leave me a message and the editor will reply to you in time. I would also like to thank everyone for their support of the 123WORDPRESS.COM website!
If you find this article helpful, please feel free to reprint it and please indicate the source. Thank you!

You may also be interested in:
  • CentOS 7 wireless network card driver installation and wireless network configuration details
  • Detailed explanation of how to install Realtek wireless network card driver in CentOS 6.5
  • Issues with upgrading Python and installing Mongodb drivers under Centos

<<:  The meaning and calculation method of QPS and TPS of MySQL database

>>:  Complete steps to use vue-router in vue3

Recommend

Four modes of Oracle opening and closing

>1 Start the database In the cmd command windo...

How to recover accidentally deleted table data in MySQL (must read)

If there is a backup, it is very simple. You only...

Two ways to clear table data in MySQL and their differences

There are two ways to delete data in MySQL: Trunc...

The latest version of MySQL5.7.19 decompression version installation guide

MySQL version: MySQL Community Edition (GPL) ----...

Details of MutationObServer monitoring DOM elements in JavaScript

1. Basic Use It can be instantiated through the M...

Detailed explanation of Vue's monitoring properties

Table of contents Vue monitor properties What is ...

A line of CSS code that crashes Chrome

General CSS code will only cause minor issues wit...

Detailed tutorial on building nextcloud private cloud storage network disk

Nextcloud is an open source and free private clou...

Detailed explanation of Apache website service configuration based on Linux

As an open source software, Apache is one of the ...

CSS3 achieves cool 3D rotation perspective effect

CSS3 achieves cool 3D rotation perspective 3D ani...

MySQL sorting using index scan

Table of contents Install sakila Index Scan Sort ...

Detailed explanation of MySQL sql_mode query and setting

1. Execute SQL to view select @@session.sql_mode;...

Vue implements internationalization of web page language switching

1. Basic steps 1: Install yarn add vue-i18n Creat...