Results 1 to 6 of 6

Thread: Alfa AWUS1900 wifi adaptor

  1. #1
    Join Date
    Nov 2024
    Beans
    3

    Alfa AWUS1900 wifi adaptor

    Hi

    I'm trying to install the Alfa Awus1900 wireless adapter on Ubuntu 24.04.1 LTS. I've downloaded the
    Realtek rtl8814au driver from github. I've unziped the driver and followed these commands:


    # build & install
    ```
    $ git clone https://github.com/aircrack-ng/rtl8814au.git
    $ cd rtl8814au
    $ make
    $ make install.

    warning: the compiler differs from the one used to build the kernel
    The kernel was built by: x86_64-linux-gnu-gcc-13 (Ubuntu 13.2.0-23ubuntu4) 13.2.0
    You are using: gcc-13 (Ubuntu 13.2.0-23ubuntu4) 13.2.0


    Does anyone know what the solution is?

    Thank you

  2. #2
    Join Date
    Jun 2007
    Beans
    14,897

    Re: Alfa AWUS1900 wifi adaptor

    The warning can be ignored. You need to run make install with sudo:
    Code:
    sudo make install
    You also need to make sure you sign the built module with mokutil (or disable SecureBoot in BIOS/EFI) so it loads.

  3. #3
    Join Date
    Jun 2007
    Beans
    14,897

    Re: Alfa AWUS1900 wifi adaptor

    Actually, you are better off using:
    Code:
    make 
    sudo make dkms_install
    .. or else you will have to build/install rtl8814au module every time you get a kernel update.

  4. #4
    Join Date
    Nov 2024
    Beans
    3

    Re: Alfa AWUS1900 wifi adaptor

    Hi

    Thanks for your reply. I've disabled secure boot and it works now.
    Last edited by lash508; November 29th, 2024 at 08:26 PM.

  5. #5
    Join Date
    Nov 2024
    Beans
    3

    Re: Alfa AWUS1900 wifi adaptor

    Quote Originally Posted by Yellow Pasque View Post
    The warning can be ignored. You need to run make install with sudo:
    Code:
    sudo make install
    You also need to make sure you sign the built module with mokutil (or disable SecureBoot in BIOS/EFI) so it loads.
    How do I sign the module?

  6. #6
    Join Date
    Jun 2007
    Beans
    14,897

    Re: Alfa AWUS1900 wifi adaptor

    Quote Originally Posted by lash508 View Post
    How do I sign the module?
    With mokutil. Don't ask me for specifics. I personally think SecureBoot is more hassle than it's worth and don't use it.

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
  •