centos7-minimal版本的初始化
程序员文章站
2022-03-11 22:49:49
...
centos7-minimal版本的初始化。
- 关闭selinux
vim /etc/selinux/config
SELINUX=disabled
- 关闭firewalld
systemctl stop firewalld
systemctl disable firewalld
- 配置网络
/etc/sysconfig/network-scripts]# vim ifcfg-ens32
TYPE=Ethernet
PROXY_METHOD=none
BROWSER_ONLY=no
BOOTPROTO=static
DEFROUTE=yes
IPV4_FAILURE_FATAL=no
NAME=ens32
DEVICE=ens32
ONBOOT=yes
IPADDR=172.16.0.51
NETMASK=255.255.0.0
GATEWAY=172.16.0.254
DNS1=211.137.32.178
不能有的:
MAC地址信息
UUID信息
IPV6信息
校验:
[[email protected] ~]# ping www.baidu.com
PING www.a.shifen.com (39.156.66.18) 56(84) bytes of data.
64 bytes from 39.156.66.18 (39.156.66.18): icmp_seq=1 ttl=53 time=26.5 ms
- 安装常用的工具
yum install -y vim-enhanced net-tools ftp lftp wget ntpdate setuptool authconfig ntsysv acpid gpm
- 同步时间
ntpdate ntp1.aliyun.com
tail /etc/rc.d/rc.local
ntpdate ntp1.aliyun.com
chmod +x /etc/rc.d/rc.local
写计划任务,每隔1小时,同步一次时间
crontab -e
0 * * * * /usr/sbin/ntpdate ntp1.aliyun.com
- 写主机名
vim /etc/hostname
写的清晰 明确
- 写/etc/hosts
172.16.x.x 主机名.域名 主机名