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

CentOS7安装

程序员文章站 2022-05-22 19:23:06
...

1.CentOS7安装

CentOS7安装
CentOS7安装

CentOS7安装
CentOS7安装
CentOS7安装
CentOS7安装
CentOS7安装
CentOS7安装
CentOS7安装
CentOS7安装
CentOS7安装
CentOS7安装

2.centos7安装后克隆虚机前的部分优化

2.1 关闭防火墙和selinux

systemctl   stop   firewalld.service
systemctl   disable firewalld.service

setenforce 0
sed -i  '/^SELINUX/s#enforcing#disabled#g' /etc/selinux/config

2.2 修改源为阿里云

yum install -y wget 
wget -O /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-7.repo
wget -O /etc/yum.repos.d/epel.repo http://mirrors.aliyun.com/repo/epel-7.repo
yum clean all
yum makecache

yum -y install gcc gcc-c++  cmake curl  nmap  lrzsz unzip zip ntpdate telnet vim tree bash-completion iptables-services ntp dos2unix lsof net-tools sysstat

2.3 时间同步

 echo "*/5 * * * * /usr/sbin/ntpdate ntp1.aliyun.com >/dev/null 2>&1">>/var/spool/cron/root
相关标签: linux运维