配置文件是可编辑的文本文件
你可以通过编辑它来更改软件的设置
比如在Windows、Mac OS和Linux下都存在的一个配置文件host
它可以修改它来手动将IP地址映射到主机名
hosts在win10下的路径是:c:\windows\system32\drivers\etc
它看起来应该像这样:
如果你和我一样一打开便是空文件,请把下面的内容复制并粘贴进去
记住文本编辑器要以管理员身份运行
# Copyright (c) 1993-2009 Microsoft Corp.
#
# This is a sample HOSTS file used by Microsoft TCP/IP for Windows.
#
# This file contains the mappings of IP addresses to host names. Each
# entry should be kept on an individual line. The IP address should
# be placed in the first column followed by the corresponding host name.
# The IP address and the host name should be separated by at least one
# space.
#
# Additionally, comments (such as these) may be inserted on individual
# lines or following the machine name denoted by a '#' symbol.
#
# For example:
#
# 102.54.94.97 rhino.acme.com # source server
# 38.25.63.10 x.acme.com # x client host
# localhost name resolution is handled within DNS itself.
# 127.0.0.1 localhost
# ::1 localhost
linux下的hosts文件在/etc目录下,/etc下保存了很多配置文件
还有一些配置文件会存储在用户的home目录中,文件名的开头有一个句点:.
如/root/.ssh
由于Mac OS是类Unix文件,所以它和Linux是一样的
配置文件很重要
你在Linux下编辑配置文件的机会要比Windows下多多了
因为在Windows下有更多可视化的菜单界面选项来进行配置
我在Windows下唯一一次编辑配置文件是调节游戏的帧率
Windows下的配置文件以.ini为后缀
不管在哪个系统下编辑配置文件
都请提前复制该文件,这样如果有什么东西改坏了,你还可以复原
在macOS和Linux上,使用sudo命令提高当前的权限。如果你要编辑hosts文件,请运行sudo vi /etc/hosts
配置文件会用#后的注释向你解释该配置文件
另外你也可以使用vim,对于一些特殊格式的配置文件,vim可以语法高亮
网友评论