1、/etc/sysconfig/network-scripts/ifcfg-eth0??网卡配置文件
TYPE=Ethernet ? ????????? # 网络类型 以太网
BOOTPROTO=none? ? ?# 配置IP地址的方式 none static ?dhcp
NAME=eth0? ? ? ? ? ? ? ? ? # 网卡在系统中的名字
DEVICE=eth0 ????????? ? ? # 硬件设备名称
ONBOOT=yes? ? ? ? ? ? ? # 开机自动启动网络服务
IPADDR=10.0.0.200? ? ?#IP地址局域网唯一
PREFIX=24? ? ? ? ? ? ? ? ? # 子网掩码
GATEWAY=10.0.0.2? ? ?# 网关 出网的必经之路
2、/etc/hosts? ? ?本地DNS解析配置文件 ? ? ??
解析ip? ? ? ? ? ? ????????? 域名
127.0.0.1 ????????? localhost localhost.localdomain localhost4 localhost4.localdomain4
::1? ? ? ? ? ? ????????? localhost localhost.localdomain localhost6 localhost6.localdomain6
3、/etc/resolv.conf? ? DNS配置文件
名称? ? ? ? ? ? ? ? ?dns地址
nameserver 223.5.5.5
4、/etc/hostname? ? ? ? 存放主机名的文件
主机名修改命令:
hostname? 临时修改
hostnamectl set-hostname 永久生效
5、/etc/rc.local? ? ? ? 开机运行文件中的命令
6、/etc/fstab? ? ? ? 系统磁盘挂载信息
7、/etc/inittab? ? ? ? 系统运行级别
8、/etc/profile? ? ? ? 存放系统变量的文件
9、/etc/locale.conf? ? ? ? 存放系统语言及编码格式的文件