web-dev-qa-db-ja.com

18.04 with VirtualBox 6:Alfa awus036ach USB接続WiFiのインストールに手助けが必要

USB接続の alfa awus036ach WiFiアダプターをインストールして、Kaliを仮想マシンとして使用してホームネットワークを確認しようとしています。

Ubuntu、Linux、およびコマンドラインに非常に新しい。 Ubuntu 18.04、UbuntuにVirtualBox 6.0、VirtualBox内にKali Linux 19.04をインストールしました。

lsusb は、アルファが接続されていることを示します。私が試した: https://tacticalware.com/install-alfa-awus036ach-drivers-on-ubuntu-18-04/

ここで、正しいフォルダへのファイルのコピーに問題がありました。うまくいきませんでした

また、失敗しました https://github.com/aircrack-ng/rtl8812a

私は間違いなく間違いを犯しているし、Linuxやコマンドラインを十分に理解できないので、間違いを確認できない

どんな助けも大歓迎です。また、それが理由ではない場合。

lsusb -v

Bus 001 Device 004: ID 0bda:8812 Realtek Semiconductor Corp. RTL8812AU 802.11a/b/g/n/ac WLAN Adapter
Couldn't open device, some information will be missing
Device Descriptor:
  bLength                18
  bDescriptorType         1
  bcdUSB               2.00
  bDeviceClass            0 (Defined at Interface level)
  bDeviceSubClass         0 
  bDeviceProtocol         0 
  bMaxPacketSize0        64
  idVendor           0x0bda Realtek Semiconductor Corp.
  idProduct          0x8812 RTL8812AU 802.11a/b/g/n/ac WLAN Adapter
  bcdDevice            0.00
  iManufacturer           1 
  iProduct                2 
  iSerial                 3 
  bNumConfigurations      1
  Configuration Descriptor:
    bLength                 9
    bDescriptorType         2
    wTotalLength           53
    bNumInterfaces          1
    bConfigurationValue     1
    iConfiguration          0 
    bmAttributes         0x80
      (Bus Powered)
    MaxPower              500mA
    Interface Descriptor:
      bLength                 9
      bDescriptorType         4
      bInterfaceNumber        0
      bAlternateSetting       0
      bNumEndpoints           5
      bInterfaceClass       255 Vendor Specific Class
      bInterfaceSubClass    255 Vendor Specific Subclass
      bInterfaceProtocol    255 Vendor Specific Protocol
      iInterface              0 
      Endpoint Descriptor:
        bLength                 7
        bDescriptorType         5
        bEndpointAddress     0x81  EP 1 IN
        bmAttributes            2
          Transfer Type            Bulk
          Synch Type               None
          Usage Type               Data
        wMaxPacketSize     0x0200  1x 512 bytes
        bInterval               0
      Endpoint Descriptor:
        bLength                 7
        bDescriptorType         5
        bEndpointAddress     0x02  EP 2 OUT
        bmAttributes            2
          Transfer Type            Bulk
          Synch Type               None
          Usage Type               Data
        wMaxPacketSize     0x0200  1x 512 bytes
        bInterval               0
      Endpoint Descriptor:
        bLength                 7
        bDescriptorType         5
        bEndpointAddress     0x03  EP 3 OUT
        bmAttributes            2
          Transfer Type            Bulk
          Synch Type               None
          Usage Type               Data
        wMaxPacketSize     0x0200  1x 512 bytes
        bInterval               0
      Endpoint Descriptor:
        bLength                 7
        bDescriptorType         5
        bEndpointAddress     0x04  EP 4 OUT
        bmAttributes            2
          Transfer Type            Bulk
          Synch Type               None
          Usage Type               Data
        wMaxPacketSize     0x0200  1x 512 bytes
        bInterval               0
      Endpoint Descriptor:
        bLength                 7
        bDescriptorType         5
        bEndpointAddress     0x85  EP 5 IN
        bmAttributes            3
          Transfer Type            Interrupt
          Synch Type               None
          Usage Type               Data
        wMaxPacketSize     0x0040  1x 64 bytes
        bInterval               1
3
NotYou10913

このGitHubリポジトリから最新のドライバーをインストールできます:https://github.com/aircrack-ng/rtl8812au.git

リポジトリによると、これはDKMSメソッドを使用してドライバーをインストールする方法です。

Sudo apt update
Sudo apt install dkms
git clone -b v5.6.4.2 https://github.com/aircrack-ng/rtl8812au.git
cd rtl8812au
Sudo ./dkms-install.sh

これで、USB WiFiアダプターが動作するはずです。

2
Jags