其他综合-CentOS 7 搭建模板机

CentOS 7 搭建模板机

【基于此文章的环境】点我快速打开文章

1、修改静态地址

ip a|awk -F '[ /]+' '$NF~/eth0/ {print $3}'

cat >/etc/sysconfig/network-scripts/ifcfg-eth0 <<EOF
TYPE=Ethernet
BOOTPROTO=none
NAME=eth0
DEVICE=eth0
ONBOOT=yes
IPADDR=10.0.0.100
NETMASK=255.255.255.0
GATEWAY=10.0.0.254
DNS1=180.76.76.76
DNS2=223.5.5.5
EOF

cat /etc/sysconfig/network-scripts/ifcfg-eth0

其他综合-CentOS 7 搭建模板机

其他综合-CentOS 7 搭建模板机

2、关闭防火墙和 SELINUX

systemctl stop firewalld

systemctl disable firewalld

setenforce 0 && getenforce 

sed -i \
  's#SELINUX=enforcing#SELINUX=disabled#g'  \
  /etc/selinux/config

grep ^SELINUX /etc/selinux/config

其他综合-CentOS 7 搭建模板机

其他综合-CentOS 7 搭建模板机

3、简单优化 SSH

sed -i \
  's#GSSAPIAuthentication yes#GSSAPIAuthentication no#g'  \
  /etc/ssh/sshd_config

grep ^GSSAPIAuth /etc/ssh/sshd_config

sed -i \
  's/#UseDNS yes/UseDNS no/g'  \
  /etc/ssh/sshd_config

grep ^UseDNS /etc/ssh/sshd_config

systemctl restart sshd

其他综合-CentOS 7 搭建模板机

其他综合-CentOS 7 搭建模板机

4、yum 源的优化

4.1 CD/DVD

其他综合-CentOS 7 搭建模板机

其他综合-CentOS 7 搭建模板机

4.2 mount 挂载

umount /mnt

cd /etc/yum.repos.d/  && mkdir test

\mv *.repo test

echo '[local]
name=local
baseurl=file:///mnt
gpgcheck=0' >local.repo

mount /dev/cdrom /mnt && yum makecache

其他综合-CentOS 7 搭建模板机

其他综合-CentOS 7 搭建模板机

5、其他简单优化

1. 关闭网卡图形化设置模式

systemctl stop NetworkManager

systemctl disable NetworkManager

其他综合-CentOS 7 搭建模板机

其他综合-CentOS 7 搭建模板机

2. CentOS6CentOS7 都要安装的企业运维常用基础工具包

yum install tree nmap dos2unix lrzsz nc lsof \
  wget tcpdump htop iftop iotop sysstat nethogs -y \
  &>/dev/null

echo $?

其他综合-CentOS 7 搭建模板机

其他综合-CentOS 7 搭建模板机

3. CentOS7 要安装的企业运维常用基础工具包

yum install psmisc net-tools bash-completion vim-enhanced -y &>/dev/null

echo $?

其他综合-CentOS 7 搭建模板机

其他综合-CentOS 7 搭建模板机

6、关机拍摄快照

1. 关机

sync

init 0

其他综合-CentOS 7 搭建模板机

其他综合-CentOS 7 搭建模板机

2. 快照

第一次优化

IP:10.0.0.100
root:123456
缺少yum源

其他综合-CentOS 7 搭建模板机

其他综合-CentOS 7 搭建模板机

【怎么样,你的模板机建立好了吗?,那我们快去学习怎么快速克隆多台吧!】点我快速打开文章

【本文图片下载地址】【018- 搭建模板机】点我快速打开分享(若异常,请私信,万分感谢) 【提取码:hphp 】

今天你学习了吗?若有疑问,请留言、私信或加QQ群:647033350,大家一起进步吧!

上一篇:mysql sqlyog提示2058错误或者用Navicat连接本机Docker的Mysql 和一些问题的解决方案


下一篇:win10家庭版快速升级专业版