安装vmware
下载centos7镜像
安装centos
设置root账号密码,也可以创建新用户这里不创建了
等待安装完成重启
输入root以及密码
设置ip
查看ip地址
启动网卡连接
ifup ens33
修改为静态ip方便后续使用
vi /etc/sysconfig/network-scripts/ifcfg-ens33
# 把ONBOOT=no改为ONBOOT=yes,重启后配置也能生效
# 删除uuid,方便后续虚拟机复制
原始配置
重启网络
systemctl restart network
发现连接不上网络
修改子网地址
想修改回dhcp可以参考之前的配置
安装ssh
# 查看是否安装了ssh
rpm -qa|grep -E "openssh"
# 安装ssh服务
yum install openssh-server
# 查看ssh服务状态
systemctl status sshd
# 开启ssh服务
service sshd start
# 重启ssh服务
service sshd restart
#开机启动sshd服务
systemctl enable sshd
#检查是否开机启动
systemctl list-unit-files |grep ssh
#停止sshd服务
systemctl stop sshd
#禁用开机启动sshd服务
systemctl disable sshd
设置国内镜像
# 首先备份系统自带yum源配置文件/etc/yum.repos.d/CentOS-Base.repo
mv /etc/yum.repos.d/CentOS-Base.repo /etc/yum.repos.d/CentOS-Base.repo.backup
阿里源(推荐):
wget -O /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-7.repo
网易源:
wget -O /etc/yum.repos.d/CentOS-Base.repo http://mirrors.163.com/.help/CentOS7-Base-163.repo
mv Centos-7.repo /etc/yum.repos.d/CentOS-Base.repo
yum clean all
yum makecache
yum update
设置时间
# 选择时区
timedatectl list-timezones|grep Asia
timedatectl set-timezone Asia/Shanghai
# 使用NTP服务同步时间
sudo yum install ntp ntpdate
sudo systemctl start ntpd
sudo systemctl enable ntpd
sudo ntpdate ntp3.aliyun.com