昨晚我在我的计算机上工作,作为参考,我使用的是 i3,并决定卸载 XFCE4,因为我觉得我不需要它。第二天早上我打开电脑,发现没有有线连接。然而,我启动到我的 Windows 分区,发现它确实在那里工作。我在网上查看过但很难找到任何答案。
这是 sudo ifconfig 的输出:
archie@debian:~$ sudo ifconfig
[sudo] password for archie:
eth0 Link encap:Ethernet HWaddr 40:8d:5c:58:fa:92
inet6 addr: fe80::428d:5cff:fe58:fa92/64 Scope:Link
UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1
RX packets:2061 errors:0 dropped:54 overruns:0 frame:0
TX packets:29 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:1000
RX bytes:307371 (300.1 KiB) TX bytes:4856 (4.7 KiB)
lo Link encap:Local Loopback
inet addr:127.0.0.1 Mask:255.0.0.0
inet6 addr: ::1/128 Scope:Host
UP LOOPBACK RUNNING MTU:65536 Metric:1
RX packets:42 errors:0 dropped:0 overruns:0 frame:0
TX packets:42 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:0
RX bytes:5306 (5.1 KiB) TX bytes:5306 (5.1 KiB)
这是我的 /etc/network/interfaces
# This file describes the network interfaces available on your system
# and how to activate them. For more information, see interfaces(5).
source /etc/network/interfaces.d/*
# The loopback network interface
auto lo
iface eth0 inet6 auto
我很感激任何帮助
答案1
下面auto lo
添加auto eth0
.然后,在其下方添加alow-hotplug eth0
您的最终 /etc/network/interfaces 应为:
auto lo
auto eth0
allow-hotplug eth0
iface eth0 inet6 auto
重新启动以获得良好的效果。
请参阅:man interfaces
了解更多信息:)