我正在运行 Ubuntu Focal 20.04,我想获取有关网络的信息。为此,我使用 shell 运行以下命令,该命令输出大量信息:
ifconfig -a
一切似乎都运行良好,直到我运行:
ifconfig eth0
运行最后一条命令时,我得到:
eth0: error fetching interface information: Device not found
我不明白我做错了什么!有什么帮助吗?
答案1
eth0
您(和我们所有人)多年来都没有。Ubuntu 使用预测名称。ifconfig -a
向您显示您需要输入的名称ifconfig
。
来自我的机器的示例:
$ ifconfig -a
...
wlo1: flags=4163<UP,BROADCAST,RUNNING,MULTICAST> mtu 1500
inet 192.168.178.19 netmask 255.255.255.0 broadcast 192.168.178.255
inet6 fe80::b971:f72f:c416:2a96 prefixlen 64 scopeid 0x20<link>
ether fc:77:74:bc:87:43 txqueuelen 1000 (Ethernet)
RX packets 2733275 bytes 3448410896 (3.4 GB)
RX errors 0 dropped 0 overruns 0 frame 0
TX packets 1070857 bytes 381490320 (381.4 MB)
TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0
所以对我来说ifconfig wlo1
将显示你向系统询问的内容eth0
。