AskOverflow.Dev

AskOverflow.Dev Logo AskOverflow.Dev Logo

AskOverflow.Dev Navigation

  • 主页
  • 系统&网络
  • Ubuntu
  • Unix
  • DBA
  • Computer
  • Coding
  • LangChain

Mobile menu

Close
  • 主页
  • 系统&网络
    • 最新
    • 热门
    • 标签
  • Ubuntu
    • 最新
    • 热门
    • 标签
  • Unix
    • 最新
    • 标签
  • DBA
    • 最新
    • 标签
  • Computer
    • 最新
    • 标签
  • Coding
    • 最新
    • 标签
主页 / ubuntu / 问题 / 1134101
Accepted
Rafael Cordano
Rafael Cordano
Asked: 2019-04-16 05:56:35 +0800 CST2019-04-16 05:56:35 +0800 CST 2019-04-16 05:56:35 +0800 CST

TP-LINK Archer T3U 在 Ubuntu 18.04 中不工作

  • 772

我最近购买了 TP-LINK Archer T3U。我尝试了几种解决方案,但仍然无法正常工作。我尝试使用https://github.com/cilynx/rtl88x2BU_WiFi_linux_v5.3.1_27678.20180430_COEX20180427-5959/ 和 https://github.com/jeremyb31/

结果sudo lshw -class network:

 *-network                 
       description: Ethernet interface
       product: RTL8111/8168/8411 PCI Express Gigabit Ethernet Controller
       vendor: Realtek Semiconductor Co., Ltd.
       physical id: 0
       information del bus: pci@0000:03:00.0
       logical name: enp3s0
       version: 0c
       series: e0:3f:49:53:74:00
       size: 10Mbit/s
       capacity: 1Gbit/s
       width: 64 bits
       clock: 33MHz
       capabilities: pm msi pciexpress msix vpd bus_master cap_list ethernet physical tp mii 10bt 10bt-fd 100bt 100bt-fd 1000bt 1000bt-fd autonegotiation
       configuration: autonegotiation=on broadcast=yes driver=r8169 driverversion=2.3LK-NAPI duplex=half firmware=rtl8168g-2_0.0.1 02/06/13 latency=0 link=no multicast=yes port=MII speed=10Mbit/s
       resources: irq:18 ioport:e000(size=256) memory:f7c00000-f7c00fff memory:f0000000-f0003fff
  *-network
       description: Interfaz inalámbrica
       physical id: 2
       bus info: usb@3:4
       logical name: wlxd85d4c9538fe
       series: d8:5d:4c:95:38:fe
       capabilities: ethernet physical wireless
       configuration: broadcast=yes driver=rt2800usb driverversion=4.15.0-47-generic firmware=0.36 ip=192.168.0.122 link=yes multicast=yes wireless=IEEE 802.11

lsusb:

Bus 002 Device 002: ID 8087:8000 Intel Corp. 
Bus 002 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
Bus 001 Device 002: ID 8087:8008 Intel Corp. 
Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
Bus 004 Device 001: ID 1d6b:0003 Linux Foundation 3.0 root hub
Bus 003 Device 004: ID 258a:0001  
Bus 003 Device 006: ID 148f:3070 Ralink Technology, Corp. RT2870/RT3070 Wireless Adapter
Bus 003 Device 005: ID 046d:c05a Logitech, Inc. M90/M100 Optical Mouse
Bus 003 Device 002: ID 2357:012d  
Bus 003 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub

是设备总线 003 设备 002:ID 2357:012d

然后我检查了rfkill list all,没有硬或软阻塞,dmesg没有抛出错误。

提前致谢

wireless drivers tp-link
  • 3 3 个回答
  • 37832 Views

3 个回答

  • Voted
  1. Best Answer
    Jeremy31
    2019-04-16T12:46:14+08:002019-04-16T12:46:14+08:00

    我刚刚更新了https://github.com/jeremyb31/rtl8822bu以支持此设备确保其他 dkms 模块已消失

    sudo dkms remove rtl88x2bu/5.3.1 --all
    sudo dkms remove 8822bu/1.1 --all

    使用 make 删除任何可能的手动安装

    cd rtl8822bu && sudo make uninstall
    更新 git
    git pull

    删除 cilynx

     cd ~/rtl88x2BU_WiFi_linux_v5.3.1_27678.20180430_COEX20180427-5959 
    sudo make uninstall

    从https://github.com/jeremyb31/rtl8822bu安装更新版本

    cd ~
    sudo dkms add ./rtl8822bu
    sudo dkms install 8822bu/1.1
    重启

    • 10
  2. eigenanswer
    2019-10-25T23:33:50+08:002019-10-25T23:33:50+08:00

    ~/Downloads在调用中创建一个文件,install_t3u.sh内容如下:

    #To run script, type 'sudo ./install_t3u.sh' in ~/Downloads/
    ##This bash-script assumes your CPU has eight-threads.
    
    sudo dkms remove rtl88x2bu/5.3.1 --all;
    sudo dkms remove 8822bu/1.1 --all;
    
    cd ~/Downloads/;
    git clone https://github.com/jeremyb31/rtl8822bu;
    cd rtl8822bu/;
    make uninstall -j 8;
    make -j 8;
    make install -j 8;
    cd ../;
    sudo cp -R rtl8822bu/ /usr/src/.-rtl8822bu/;
    sudo dkms add ./rtl8822bu;
    sudo rm -R rtl8822bu/;
    echo "Install completed. Please reboot.";
    echo "Try: 'sudo shutdown -f now' or 'reboot'";
    

    在同一目录中时,执行sudo ./install_t3u.sh

    • 1
  3. varnaud
    2021-10-20T04:22:56+08:002021-10-20T04:22:56+08:00

    我将再添加一个答案,因为接受的答案不适用于 Debian 10(Ubuntu 解决方案大部分时间都可以使用的发行版)。

    我克隆了这个 repo:https ://github.com/cilynx/rtl88x2bu并按照自述文件中的说明进行操作。

    这是我使用的命令的摘要

    git clone https://github.com/cilynx/rtl88x2bu
    cd rtl88x2bu
    make
    # I tested the module with this
    sudo insmod 88x2bu.ko
    # and then wifi worked!
    
    # Then to make the module available after reboot
    ./deploy.sh
    
    • 0

相关问题

  • 如何为 LG X130 上网本安装 relink 无线驱动程序

  • 无论用户是否登录,如何配置 WiFi 以在启动时登录 WPA?

  • 如何设置与 Eee PC 1005 的无线连接?[关闭]

  • 类似于 Eyefinity 的东西?

  • 在哪里可以找到 Brother HL-2170W 64 位打印机驱动程序?

Sidebar

Stats

  • 问题 205573
  • 回答 270741
  • 最佳答案 135370
  • 用户 68524
  • 热门
  • 回答
  • Marko Smith

    如何运行 .sh 脚本?

    • 16 个回答
  • Marko Smith

    如何安装 .tar.gz(或 .tar.bz2)文件?

    • 14 个回答
  • Marko Smith

    如何列出所有已安装的软件包

    • 24 个回答
  • Marko Smith

    无法锁定管理目录 (/var/lib/dpkg/) 是另一个进程在使用它吗?

    • 25 个回答
  • Martin Hope
    Flimm 如何在没有 sudo 的情况下使用 docker? 2014-06-07 00:17:43 +0800 CST
  • Martin Hope
    Ivan 如何列出所有已安装的软件包 2010-12-17 18:08:49 +0800 CST
  • Martin Hope
    La Ode Adam Saputra 无法锁定管理目录 (/var/lib/dpkg/) 是另一个进程在使用它吗? 2010-11-30 18:12:48 +0800 CST
  • Martin Hope
    David Barry 如何从命令行确定目录(文件夹)的总大小? 2010-08-06 10:20:23 +0800 CST
  • Martin Hope
    jfoucher “以下软件包已被保留:”为什么以及如何解决? 2010-08-01 13:59:22 +0800 CST
  • Martin Hope
    David Ashford 如何删除 PPA? 2010-07-30 01:09:42 +0800 CST

热门标签

10.10 10.04 gnome networking server command-line package-management software-recommendation sound xorg

Explore

  • 主页
  • 问题
    • 最新
    • 热门
  • 标签
  • 帮助

Footer

AskOverflow.Dev

关于我们

  • 关于我们
  • 联系我们

Legal Stuff

  • Privacy Policy

Language

  • Pt
  • Server
  • Unix

© 2023 AskOverflow.DEV All Rights Reserve