1

I am in a conundrum. My fresh install of Ubuntu on a desktop PC does not have the required drivers for a network dongle. As such, I am unable to install the required functions to install the drivers (ex: make, dkms, etc...). A wired connection is out of the question.

If there is some way to install these from the install USB I would love to know, but until that happens I am in the dark.

For context, I have an ASUS AC53 Nano that needs drivers and the install instructions are here

  • 1
    For the Git repo, use a different computer to clone it to a flash drive, and then just stick the USB stick into your (offline) PC. You may need to mount it, but that is easy. Getting the apt packages are harder but do-able. The easiest way would be to use a wire. But if you really can't, check out this question which explains how to do it. – cocomac Jan 08 '22 at 16:55
  • Thanks for the help, but after reading the other comments this solution won't work for me since I haven't installed any apt-updates/upgrades. – BaddaBeepBaddaBoop Jan 08 '22 at 17:13
  • Have you confirmed that you have the same device 0b05:184c ? If so, I think this is much better: https://askubuntu.com/questions/1385922/installing-drivers-for-linksys-wireless-wusb6300-adapter-on-ubuntu-20-04/1385927#1385927 Can you tether your phone? – chili555 Jan 08 '22 at 21:22
  • I wouldn't need any tools or daemons to run .sh would I? – BaddaBeepBaddaBoop Jan 09 '22 at 12:26
  • Have you confirmed that you have the exact same device? I will propose an answer when you confirm the usb.id of the device from: lsusb Are you able to successfully tether your phone? – chili555 Jan 09 '22 at 16:31
  • lsusb |grep -i asus gives the same device you are asking about, 0b05:184c. I am also able to tether my phone. And I really appreciate the help. – BaddaBeepBaddaBoop Jan 09 '22 at 19:05

1 Answers1

0

With a temporary internet connection by tethering, please open a terminal and do:

sudo apt update
sudo apt install build-essential bc dkms git
git clone https://github.com/morrownr/88x2bu-20210702.git
cd 88x2bu-20210702
sudo ./install-driver.sh

Reboot. Your wireless should now be working.

chili555
  • 60,188
  • If tethering was an option, I would've done this since I already have the instructions to do so. My question was how to install the driver on a fresh install, either through the installation USB or via some other way. – BaddaBeepBaddaBoop Jan 10 '22 at 01:18
  • "I am also able to tether my phone." It is possible, although long, tedious and prone to error, to install all the prerequisites from the install USB. If you prefer the long, slow, tedious method, I shall add it as an edit. Here is a rough idea of the process: https://askubuntu.com/questions/1069550/unable-to-use-wifi-card-16-04-macos-dual-boot/1069949#1069949 – chili555 Jan 10 '22 at 01:24