在使用 Windows 几个月后,我刚刚再次安装了 Ubuntu。
起初,我尝试使用 .ISO 文件来安装它;但是,我在分区程序的 43% 处卡住了,所以我认为我应该使用 Wubi 安装程序。
因此,我安装了 Ubuntu 12.04,重新启动了电脑,然后继续使用 Ubuntu。
除网络连接外,一切都运行良好。
尝试连接有线以太网时卡住了,但没用。当我从 DHCP 改为手动并输入 IP 地址时。它连接上了;但是,我仍然无法使用互联网,也无法进入任何网站。
我搜索了整个互联网并尝试了不同的解决方案,但没有一个对我有用。我以前在同一台计算机上安装过 Ubuntu,那时它运行良好,但这次不行。
ifconfig
输出:
eth0 Link encap:Ethernet HWaddr c8:60:00:c4:4c:b4
inet6 addr: fe80::ca60:ff:fec4:4cb4/64 Scope:Link
UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1
RX packets:3399 errors:0 dropped:0 overruns:0 frame:0
TX packets:3090 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:1000
RX bytes:2340549 (2.3 MB) TX bytes:334975 (334.9 KB)
Interrupt:20 Memory:f7300000-f7320000
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:796 errors:0 dropped:0 overruns:0 frame:0
TX packets:796 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:0
RX bytes:58956 (58.9 KB) TX bytes:58956 (58.9 KB)
网络管理工具输出:
NetworkManager Tool
State: connecting
- Device: eth0 [Wired connection 1] -------------------------------------------
Type: Wired
Driver: e1000e
State: connecting (getting IP configuration)
Default: no
HW Address: C8:60:00:C4:4C:B4
Capabilities:
Carrier Detect: yes
Speed: 100 Mb/s
Wired Properties
Carrier: on
route -n
输出:
Kernel IP routing table
Destination Gateway Genmask Flags Metric Ref Use Iface
ping
输出:
ping
connect: Network is unreachable
当我尝试配置/etc/network
接口文件以设置 DHCP 时,我的网络选项卡显示:
Device not managed
。我也尝试重新安装 Ubuntu,但仍然不起作用。
我怎样才能解决这个问题?
答案1
要让网络管理器管理此接口,请在终端中尝试此操作
sudo nano /etc/NetworkManager/NetworkManager.conf
将行“managed=false”更改为“managed=true”
保存,然后在同一个终端我们需要重新启动网络管理器。
sudo service network-manager restart
这应该能让你明白一切了。