I bought the wireless adapter to use with a computer without internet access but I can't figure out how to install it with just a USB with the driver on it. I've read a few articles on how to install the driver but they all require me to have internet access and I don't have internet. I'm completely new to Ubuntu. If you can help that would be great. Thanks! Ps: I have the latest version of Ubuntu as of 7-5-16.
3 Answers
Please download this file on some other computer and transfer it to the desktop of the subject computer: https://github.com/abperiasamy/rtl8812AU_8821AU_linux/archive/master.zip Right-click it and select 'Extract Here.' Now, in a terminal:
cd ~/Desktop/rtl8812AU_8821AU_linux-master
make
sudo make install
sudo modprobe rtl8812au
Now that we have the wireless working correctly, we'll refine this a bit.
sudo apt-get update
sudo apt-get install dkms
cd ~/Desktop/rtl8812AU_8821AU_linux-master
sudo cp -R . /usr/src/rtl8812AU_8821AU_linux-1.0
sudo dkms add -m rtl8812AU_8821AU_linux -v 1.0
sudo dkms build -m rtl8812AU_8821AU_linux -v 1.0
sudo dkms install -m rtl8812AU_8821AU_linux -v 1.0

- 117,780

- 60,188
This driver can be installed from the official Ubuntu repositories by
sudo apt install rtl8812au-dkms

- 90,100
- 91
- 213
- 324
-
1That's cool, but you have to have a working Internet connection first before using it. Kinda Catch-22. – user626528 Mar 09 '17 at 21:25
-
1
-
2Also this doesn't install the same thing. T4U v2 doesn't work with this unfortunately. Compiling it from source and creating a dkms package does work like a charm though. – Gabor Lengyel Oct 26 '17 at 09:47
-
Works on Ubuntu 18.04.4 LTS with kernel head v5.3.xxx using this repo. which you will need to git clone into a local folder
https://github.com/EntropicEffect/rtl8822bu
git clone https://github.com/EntropicEffect/rtl8822bu
Make sure you have build-essentials
and dkms
sudo apt-get install build-essential dkms
After cloning, cd
into that folder and run
cd rtl8822bu
make
sudo make install
sudo modprobe 88x2bu
Then connect to your Wi-Fi (Hopefully, both 2.4GHz and 5GHz should be detectable now)
Next, follow these steps to refine the installation and for an automatic rebuild on Ubuntu kernel image updates
sudo dkms add .
sudo dkms install -m 88x2bu -v 1.1

- 151
dkms
process. The driver will be compiled automatically for you if there is a newer linux-image installed. Highly recommended and thank you, @Eliah Kagan. – chili555 Jan 18 '17 at 21:21make install
andmodprobe
– Alexey Vesnin Aug 02 '17 at 23:41sudo lshw -C network
I'm getting:wireless=IEEE 802.11bgn
(which indicates there is no a/c - I think?). – Vanessa Deagan Jan 06 '18 at 14:44