Page 3 of 5 FirstFirst 12345 LastLast
Results 21 to 30 of 49

Thread: WIFI driver help please :)

  1. #21
    Join Date
    May 2014
    Location
    /home
    Beans
    10,943
    Distro
    Ubuntu 20.04 Focal Fossa

    Re: WIFI driver help please :)

    For iwconfig, you will likely not see any wlan with the new naming, it might be wlx??????????? any result from
    Code:
    dmesg | grep 8812

  2. #22
    Join Date
    May 2016
    Beans
    34

    Re: WIFI driver help please :)

    Okay. So. I tracked down the 1st party driver from Realtek and here it is along with all the documentation for Linux: https://www.dropbox.com/s/es6h2pyd0e...linux.zip?dl=0 (UPDATED LINK)
    Last edited by thomas110; May 28th, 2016 at 06:09 PM.

  3. #23
    Join Date
    May 2016
    Beans
    34

    Re: WIFI driver help please :)

    No result from dmesg | grep 8812Just goes to the next line

  4. #24
    Join Date
    May 2014
    Location
    /home
    Beans
    10,943
    Distro
    Ubuntu 20.04 Focal Fossa

    Re: WIFI driver help please :)

    Does the wifi work in the host? It may have to be disconnected from the host to be used in the guest. The module installed works on normal installs. I am downloading a new ISO to try on vmware to see if my USB wireless card works

  5. #25
    Join Date
    May 2016
    Beans
    34

    Re: WIFI driver help please :)

    Thank you. Yes It works on the host, but it is connected to the VM. It even shows up in Ubuntus USB list. Another thing I noticed when I "cd" into the driver folder, I try to run the command "sudo make install" to install the driver, but I get this error: install: cannot stat '8821au.ko': No such file or directory

  6. #26
    Join Date
    May 2016
    Beans
    34

    Re: WIFI driver help please :)

    And that is the driver that came with the usb adapter for Linux. Sudo make load or unload brings up "no rule to make target 'load'. Stop" also. Is it something wrong with the VM or the driver you think?

  7. #27
    Join Date
    May 2014
    Location
    /home
    Beans
    10,943
    Distro
    Ubuntu 20.04 Focal Fossa

    Re: WIFI driver help please :)

    Code:
    sudo apt-get remove rtl8812au-dkms
    That driver was missing the alias for your wifi
    Code:
    git clone https://github.com/ulli-kroll/rtl8821au.git
    Ignore if it says something about a non-empty directory, already exists
    Code:
    cd rtl8821au
    make
     sudo make install
    Then restart the guest

  8. #28
    Join Date
    May 2016
    Beans
    34

    Re: WIFI driver help please :)

    The very last command "sudo make install" I get "make: *** No rule to make target 'install'. Stop."

    But everything ellse works fine

  9. #29
    Join Date
    May 2016
    Beans
    34

    Re: WIFI driver help please :)

    is this an error with the Makefile?

  10. #30
    Join Date
    May 2014
    Location
    /home
    Beans
    10,943
    Distro
    Ubuntu 20.04 Focal Fossa

    Re: WIFI driver help please :)

    It is not a normal makefile for some reason, lets try a different way
    Code:
    sudo cp rtl8821au.ko /lib/modules/$(uname -r)/kernel/drivers/net/wireless
    sudo depmod -a
    Restart guest

Page 3 of 5 FirstFirst 12345 LastLast

Tags for this Thread

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •