从 12.04 升级到 14.04 后无法连接到互联网

从 12.04 升级到 14.04 后无法连接到互联网

我最近从 12.04 升级到了 14.04,但不幸的是,升级后我无法通过以太网或 wifi 连接到互联网。它可以检测到有线和 wifi 网络,但就是无法连接到它们。

如果我启动到恢复模式,或者使用 Linux 3.5 内核启动,我就可以连接。3.13 和 3.16 内核不允许我连接到互联网。

这是我的 3.13 内核的 ifconfig:

https://gist.github.com/anonymous/c24eb9a165df1c199821

当它成功运行时(在 3.13 内核的恢复模式下启动):

https://gist.github.com/anonymous/22cb2f206673ab4b6c15

任何帮助都将不胜感激!

答案1

尝试这个:

打开你的电脑。

按住 Shift 键,将调出 Grub 菜单。

选择以 --- 开头的行Advanced options

选择 3.13 内核中以 --- 结尾的行recovery mode

您的电脑应该会显示一个带有多个选项的菜单。

选择network - rootnetroot

在终端运行:

  # mount -o remount, rw /
  # mount --all
  # rm -rf /etc/apt/sources.list.d/*.list
  # nano /etc/apt/sources.list

在打开的文件中。

删除内容。

粘贴以下内容:

deb http://us.archive.ubuntu.com/ubuntu/ trusty main restricted
deb http://us.archive.ubuntu.com/ubuntu/ trusty-updates main restricted
deb http://us.archive.ubuntu.com/ubuntu/ trusty universe
deb http://us.archive.ubuntu.com/ubuntu/ trusty-updates universe
deb http://us.archive.ubuntu.com/ubuntu/ trusty multiverse
deb http://us.archive.ubuntu.com/ubuntu/ trusty-updates multiverse
deb http://us.archive.ubuntu.com/ubuntu/ trusty-backports main restricted universe multiverse
deb http://security.ubuntu.com/ubuntu trusty-security main restricted
deb http://security.ubuntu.com/ubuntu trusty-security universe
deb http://security.ubuntu.com/ubuntu trusty-security multiverse
deb http://archive.canonical.com/ubuntu trusty partner
deb http://extras.ubuntu.com/ubuntu trusty main

Ctrl+O保存文件。Ctrl+X关闭 nano。

并继续运行:

# dpkg --configure -a   
# apt-get -f install
# apt-get -m install
# apt-get update
# apt-get dist-upgrade
# apt-get install --reinstall ubuntu-desktop
# apt-get autoremove
# apt-get clean
# reboot

相关内容