一开始它甚至没有显示 wifi 图标,但我不知怎么在谷歌上搜索后它就开始显示图标了。我不知道 wifi 驱动程序是否已安装。我不懂任何编码:)我刚跑过去lshw -C network
就发现了这个。
WARNING: you should run this program as super-user.
*-network
description: Ethernet interface
product: RTL8111/8168/8411 PCI Express Gigabit Ethernet Controller
vendor: Realtek Semiconductor Co., Ltd.
physical id: 0
bus info: pci@0000:03:00.0
logical name: enp3s0
version: 06
serial: ec:a8:6b:f2:58:57
capacity: 1Gbit/s
width: 64 bits
clock: 33MHz
capabilities: 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 firmware=rtl8168e-3_0.0.4 03/27/12 latency=0 link=no multicast=yes port=MII
resources: irq:18 ioport:d000(size=256) memory:f2104000-f2104fff memory:f2100000-f2103fff
*-network:0 DISABLED
description: Wireless interface
physical id: 1
bus info: usb@1:1.3
logical name: wlx00e04c818802
serial: 00:e0:4c:81:88:02
capabilities: ethernet physical wireless
configuration: broadcast=yes driver=r8188eu multicast=yes wireless=unassociated
*-network:1
description: Ethernet interface
physical id: 2
bus info: usb@1:1.4
logical name: enx026d525c8ecc
serial: 02:6d:52:5c:8e:cc
capabilities: ethernet physical
configuration: broadcast=yes driver=ipheth ip=172.20.10.5 link=yes multicast=yes
WARNING: output may be incomplete or inaccurate, you should run this program as super-user.
我正在使用 realtek rtl8188eu 802.11n wifi 芯片组,带有 adnet 外部 usb wifi 适配器。它显示 network0 DISABLED。wifi 驱动程序是否被识别?我现在正在使用移动热点的以太网。请帮帮我,我需要参加在线课程。
答案1
我不确定你使用的是哪个 Linux 发行版,但我使用的是 16.04,下面的内容对 Ubuntu 16.04 来说非常完美
脚步:
cd 到 Downloads 然后使用以下命令克隆此 repo
git clone https://github.com/quickreflex/rtl8188eus
:
cd rtl8188eus
nano Makefile
向下滚动到显示以下内容的行
export TopDIR ?= $(srctree)/drivers/net/wireless/rtl8188eus
对我来说它在第 151 行,对你来说可能不一样。
将该行更改为:
export TopDIR ?= $ ~/Downloads/rtl8188eus
然后做:
make
sudo make install
sudo modprobe 8188eus
您可能需要重新启动才能使无线网络正常工作。