Ubuntu 设置hosts
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Ubuntu 设置hosts相关的知识,希望对你有一定的参考价值。
参考技术A ubuntu16.04修改host上外网1.打开hosts文件:
sudo emacs /etc/hosts
2.加入下面的内容
203.208.46.132 chrome.google.com203.208.46.132 clients2.google.com203.208.46.132 clients2.googleusercontent.com203.208.46.132 clients4.google.com74.125.39.99 clients4.google.com203.208.46.132 tools.google.com203.208.46.132 browsersync.google.com203.208.46.132 browsersync.l.google.com
3.重启网络
sudo /etc/init.d/networking restart
Ubuntu下修改hosts文件
Ubuntu系统的Hosts只需修改/etc/hosts文件,修改完之后要重启网络。
具体过程如下:
1、修改hosts
sudo gedit /etc/hosts
2、添加解析记录( . )或者从github上下载的hosts文件
保存时终端报错:
(gedit:2771): Gtk-WARNING **: Calling Inhibit failed: GDBus.Error:org.freedesktop.DBus.Error.ServiceUnknown: The name org.gnome.SessionManager was not provided by any .service files
搜索得到以下解决方法:
gksudo gedit /etc/hosts
如果没有安装gksudo,则先要运行以下命令:
sudo apt-get install gksu
安装后可以正常修改hosts文件并保存。
3、保存后重启网络
sudo /etc/init.d/networking restart
以上是关于Ubuntu 设置hosts的主要内容,如果未能解决你的问题,请参考以下文章