Chrome 卡在“解析主机”

Chrome 卡在“解析主机”

所以有一段时间我的 Chrome 随机无法加载新网页。已经打开的页面可以正常工作 - 例如,Facebook 聊天继续运行 - 其他程序也都正常。Chrome 完全重启后问题仍然存在,但重启后问题消失。问题最终会自行解决 - 我不知道如何解决。有人能理解以下内容吗?...

user@chrubuntu:~$ google-chrome-stable
[8144:8144:0528/194948:ERROR:component_loader.cc(138)] Failed to parse extension manifest.
[8144:8144:0528/194948:ERROR:background_mode_manager_aura.cc(14)] Not implemented reached in virtual void BackgroundModeManager::EnableLaunchOnStartup(bool)
ATTENTION: default value of option force_s3tc_enable overridden by environment.
Gen6+ requires Kernel 3.6 or later.
/chrome/chrome --type=gpu-proce: ../../../../src/mesa/main/context.c:1549: _mesa_make_current: Assertion `newCtx->Version > 0' failed.
[8144:8144:0528/194948:ERROR:desktop_window_tree_host_x11.cc(1289)] Not implemented reached in void views::DesktopWindowTreeHostX11::MapWindow(ui::WindowShowState)
--2014-05-28 19:49:48--  https://clients2.google.com/cr/report
Resolving clients2.google.com (clients2.google.com)... [8144:8144:0528/194950:ERROR:gpu_process_transport_factory.cc(440)] Failed to establish GPU channel.
failed: Connection timed out.
wget: unable to resolve host address ‘clients2.google.com’
[8144:8266:0528/195000:ERROR:get_updates_processor.cc(214)] PostClientToServerMessage() failed during GetUpdates
[8144:8175:0528/195016:ERROR:connection_factory_impl.cc(287)] Failed to connect to MCS endpoint with error -137

答案1

只需在文件末尾添加两行/etc/resolve.conf

nameserver 8.8.8.8
nameserver 8.8.4.4

进而

sudo service network restart

您可以访问https://developers.google.com/speed/public-dns/

答案2

使用 Google Chrome 中的以下代码清除浏览器缓存:CTRL++SHIFT然后DEL重新启动 Google Chrome 并检查问题是否已解决。

答案3

尝试这个解决方案:

步骤 1:检查默认路由使用以下命令之一:

route -n

或者

ip r

询问新的 IP 地址并使用以下命令修改连接:

dhclient -v wlan0

现在,一切都应该正常工作!

答案4

轻松修复:

 1) install resolvconf app  "sudo apt install resolvconf"
 2) sudo service networking restart

或者如果 resolvconf 已经安装:

 1) sudo dpkg-reconfigure resolvconf
 2) sudo service networking restart

这修复了 Ubuntu 和 Linux Mint 上的 DNS 解析问题。resolvconf 程序会更改 /etc/resolv.conf 文件,并充当使用该文件的程序(此处为 Chrome)之间的中介。

相关内容