创建新的虚拟机
使用'典型'创建虚拟机
选择稍后安装操作系统
版本选择CenOS 7 64位
虚拟机的命名:oldboy
虚拟机磁盘分配20G
单机完成,创建虚拟机
安装系统
将系统盘 .iso,放入光驱
开启虚拟机
按 ↑ 选中 Install CentOS7 然后按 Tab ,修改网卡名称,按空格键,然后输入如下内容
net.ifnames=0 biosdevname=0
直接选择 Continue 继续
设置日期,时区
禁止使用kdump
给磁盘分区,自定义分区,不要自动分区
分配IP地址
设置密码
点击Reboot
xshell连接虚拟机
模板机的优化步骤
1.配置yum
curl -o /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-7.repo
yum install -y wget
wget -O /etc/yum.repos.d/epel.repo http://mirrors.aliyun.com/repo/epel-7.repo
wget -O /etc/yum.repos.d/epel.repo http://mirrors.aliyun.com/repo/epel-7.repo
2.安装软件包
yum install net-tools vim tree htop iftop gcc gcc-c++ glibc #
iotop lrzsz sl wget unzip telnet nmap nc psmisc
dos2unix bash-completion bash-completion-extra sysstat
rsync nfs-utils httpd-tools ntpdate -y
3.关闭防火墙
sudo systemctl disable firewalld.service #
sudo systemctl stop firewalld.service
4.关闭selinux
sed -i '/^SELINUX=/c SELINUX=disabled' /etc/selinux/config
/etc/selinux/config
/etc/sysconfig/selinux
改成disabled
再reboot
5.调整单个进程最大能打开文件的数量
echo '* - nofile 65535' >> /etc/security/limits.conf #
6.修改主机名
hostnamectl set-hostname syy
7.拍摄快照