我今天通过最小安装安装了 Ubuntu 16.04。起初我的网络没问题(安装后network-manager
),但现在没有互联网。我只做了一些主题设置并安装了一些应用程序,没有摆弄我的网络。当我打开 nm-applet 时,我看到了以下内容:
经过短暂的搜索,我设法让我的以太网工作,通过编辑/etc/NetworkManager/NetworkManager.conf
(managed=true
)
但是,我的无线网络仍然不可用,并且以太网没有正确的名称。
有人知道可能出了什么问题以及我该如何解决这个问题?
输出
ifconfig -a
enp1s0 Link encap:Ethernet HWaddr 98:29:a6:09:43:7f
inet addr:192.168.14.114 Bcast:192.168.14.255 Mask:255.255.255.0
inet6 addr: fd40:8668:4fd2:0:a2ed:73e9:6ae0:7113/64 Scope:Global
inet6 addr: fe80::6345:48a5:9afe:87eb/64 Scope:Link
inet6 addr: fd40:8668:4fd2:0:11b7:96f8:d04:559d/64 Scope:Global
UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1
RX packets:4323 errors:0 dropped:0 overruns:0 frame:0
TX packets:3969 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:1000
RX bytes:2702203 (2.7 MB) TX bytes:625937 (625.9 KB)
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:436 errors:0 dropped:0 overruns:0 frame:0
TX packets:436 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:1
RX bytes:40921 (40.9 KB) TX bytes:40921 (40.9 KB)
cat /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 lo inet loopback
# The primary network interface
auto enp1s0
iface enp1s0 inet dhcp
# This is an autoconfigured IPv6 interface
iface enp1s0 inet6 auto
答案1
为了使网络管理器正确接管所有接口,请删除以太网设置,/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 lo inet loopback
接下来,将 NetworkManager.conf 返回到其默认状态,即 managed=false。
最后,重新启动网络管理器:
sudo service network-manager restart
可能需要重新启动。
至于无线,我建议您开始一个新问题,并包括此处所述的诊断报告。我的无线/WiFi 连接无法使用。诊断问题需要哪些信息?