在 Debian 11 上安装 TP-Link AC1200 T5E PCIe 适配器

在 Debian 11 上安装 TP-Link AC1200 T5E PCIe 适配器

网上有很多关于如何安装 TP-Link AC1200 T4UH 版本或类似版本的信息,但据我所知,没有关于 T5E 的信息。

如何在 Debian 11 上设置 TP-Link AC1200 T5E PCIe 适配器?

答案1

显然,在 Linux 上安装 TP-Link 适配器是一件非常麻烦的事情,尤其是在非 Ubuntu 发行版上。但是,对于我来说,在 Debian 11 上安装过程相当轻松(重点)。除非您是经验丰富的用户,否则可能很难弄清楚如何设置它,因此这里有一个针对此设备的简单指南。但是,这些步骤应该适用于其他设备。

请注意,该设备只是实际 WiFi 卡(小绿色芯片)的适配器:

无线网卡

我的情况中实际的 WiFi 卡是英特尔双频无线 AC 7265。使用实际 WiFi 卡的名称而不是适配器的名称来搜索驱动程序会更加容易。

實體卡

查找您的卡

首先安装硬件信息工具lshw(当然,将适配器插入空的 PCIe 插槽之后):

sudo apt install lshw

然后运行

lshw -C network

它应该输出类似这样的内容:

you@yourcomputer:~# lshw -C network
  *-network
       description: Wireless interface
       product: Wireless 7265
       vendor: Intel Corporation
       physical id: 0
       bus info: pci@0000:02:00.0
       logical name: wlp2s0
       version: 59
       serial: 18:cc:18:ed:3f:73
       width: 64 bits
       clock: 33MHz
       capabilities: pm msi pciexpress bus_master cap_list ethernet physical wireless
                                       

相关内容