欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

Centos 6 minimal初始化配置

程序员文章站 2022-03-11 22:50:13
...

1.关闭防火墙
service iptables stop
chkconfig iptables off

2.关闭selinux
vi /etc/selinux/config
(改disabled)

3.设置网卡

[[email protected] ~]# vi /etc/sysconfig/network-scripts/ifcfg-eth0 
DEVICE=eth0
HWADDR=00:0C:29:BA:C0:B6
TYPE=Ethernet
ONBOOT=yes
NM_CONTROLLED=yes
BOOTPROTO=none
IPADDR=172.16.14.6
NETMASK=255.255.0.0
GATEWAY=172.16.0.254
DNS1=8.8.8.8

service network restart

4.安装常用软件

yum install -y vim-enhanced net-tools ftp lftp wget ntpdate setuptool authconfig ntsysv acpid gpm

5.同步时间

# 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

6.主机名
# hostname 主机名