我的无线网卡未被检测到

我的无线网卡未被检测到

我有一块 NIC Realtek rtl8111/8168b,使用 r8168 驱动程序(请注意,卡附带的 r8169 驱动程序不起作用),而 Scientific Linux 的内核版本为 2.6.32,无法检测到 NIC。当我在终端中输入:

配置文件

它只出现 eth0 和 lo,但没有出现 wlan0。

一开始以为是网卡没有正确插在主板上,但是网卡的电源灯亮着,我的主板型号是技嘉GA-F2A85XM-D3H。

我得到了以下信息:

lshw 级网络

*-网络

   description: Ethernet interface
   product: RTL8111/8168B PCI Express Gigabit Ethernet controller
   vendor: Realtek Semiconductor Co., Ltd.
   physical id: 0
   bus info: pci@0000:01:00.0
   logical name: eth0
   version: 06
   serial: 94:de:80:b0:8b:cf
   size: 100Mbit/s
   capacity: 1Gbit/s
   width: 64 bits
   clock: 33MHz
   capabilities: pm msi pciexpress msix vpd bus_master cap_list ethernet physical tp 10bt 10bt-fd 100bt 100bt-fd 1000bt-fd autonegotiation
   configuration: autonegotiation=on broadcast=yes driver=r8168 driverversion=8.037.00-NAPI duplex=full ip=192.168.1.103 latency=0 link=yes multicast=yes port=twisted pair speed=100Mbit/s
   resources: irq:26 ioport:e000(size=256) memory:d0004000-d0004fff(prefetchable) memory:d0000000-d0003fff(prefetchable)

*-网络未认领

   description: Network controller
   product: Ralink corp.
   vendor: Ralink corp.
   physical id: 6
   bus info: pci@0000:02:06.0
   version: 00
   width: 32 bits
   clock: 33MHz
   capabilities: pm cap_list
   configuration: latency=32 maxlatency=4 mingnt=2
   resources: memory:fea00000-fea0ffff

此外,我还发现了以下信息:

消息 | grep eth

eth%d:0xffffc90000c50000,94:de:80:b0:8b:cf,IRQ 26

ADDRCONF(NETDEV_UP): eth0: link is not ready
r8168: eth0: link up
ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
eth0: no IPv6 routers present

欢迎提出所有建议来解决这个问题:)

答案1

Realtek 8111/8168b 是您的以太网卡,而不是无线网卡。它被正确检测到并且工作正常,如 lshw 和 dmesg 的输出所示(eth0 已启动)。

您的无线网卡设置不正确,但我们还不知道原因。原因是我们不知道它的品牌和型号。我们只知道您的操作系统没有适合它的驱动程序(未声明;这就是它的意思)。

为了取得进展,你必须发布

  lspci -vnn | grep -i net 

相关内容