我安装了基于 Debian 的 MX-Linux 发行版,它几乎是纯“Debian 风格”。在安装 KDE-plasma 5.x 时,我更新了“测试”存储库,一切运行良好。也许这不是问题的原因,只是说说而已。
现在我使用静态 IP 地址了:
# interfaces(5) file used by ifup(8) and ifdown(8)
auto lo
iface lo inet loopback
auto eth0
iface eth0 inet static
address 192.168.1.151
netmask 255.255.255.0
gateway 192.168.1.1
...事情变得相当奇怪。编辑/etc/network/interfaces
并重启后,系统无法连接到互联网。
eth0
应该是,因为我一开始用 进行检查ifconfig
。之后在/etc/network/interfaces
切换到eth1
并且系统顺利地接受了互联网连接,但是:
$ ifconfig
eth0: flags=4163<UP,BROADCAST,RUNNING,MULTICAST> mtu 1500
inet 192.168.1.6 netmask 255.255.255.0 broadcast 192.168.1.255
inet6 fe80::ceea:171a:90e7:ba0b prefixlen 64 scopeid 0x20<link>
ether 74:d4:35:47:d4:d4 txqueuelen 1000 (Ethernet)
RX packets 16696 bytes 12549408 (11.9 MiB)
RX errors 0 dropped 0 overruns 0 frame 0
TX packets 15737 bytes 1761287 (1.6 MiB)
TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0
lo: flags=73<UP,LOOPBACK,RUNNING> mtu 65536
inet ***127.0.0.1*** netmask 255.0.0.0
inet6 ::1 prefixlen 128 scopeid 0x10<host>
loop txqueuelen 1 (Local Loopback)
RX packets 1050 bytes 91770 (89.6 KiB)
RX errors 0 dropped 0 overruns 0 frame 0
TX packets 1050 bytes 91770 (89.6 KiB)
TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0
如你所见,eth0 和 eth1混合型我的 IP 地址是非静态的. 再检查一下:
$ sudo ifdown eth1 && sudo ifup eth1
ifdown: interface eth1 not configured
Cannot find device "eth1"
ifup: failed to bring up eth1
请帮忙。
答案1
我像以前一样通过设置解决了这个问题。但这次我没有重启系统,而是再次重启了managed=true
服务,/etc/NetworkManager/NetworkManager.conf
network-manager
进而重启。
原因是,在我看来,这是对 Debian“测试”的非正式更新,我应该为 Plasma 5 安装进行此更新。