解释说明:物理硬件设备需安装部署宿主机系统;宿主机系统上面安装虚拟化软件;虚拟化软件上面安装部署系统;系统上面部署各项服务
准备工具:VMware软件包,centos镜像
步骤:1、在windows上面安装VMware软件;
2、在安装好的VMware上面创建新的虚拟机;
3、安装Linux系统;
4、安装完成后配置网络,关闭selinux和firewalld并使用xshell进行登陆链接;
5、快照备份。
用ip a 查看IP地址
配置静态网络IP地址(系统默认的vi编辑器,vim需要安装:yum install vim -y)
vim /etc/sysconfig/network-scripts/ifcfg-ens32
把onboot的dhcp参数修改未none或者static
添加:
ipaddr=xxxxxxx
network=xxxxxx
gateway=xxxxxx
dns1=xxxxxx
dns2=xxxxxx
保存退出。
临时关闭selinux:setenforce 0
永久关闭selinux :vim /etc/selinux/config
selinux=disabled
临时关闭防火墙:systemctl stop firewalld
永久关闭防火墙:systemctl disable firewalld
使用xshell链接linux:
1、直接在终端使用ssh命令链接:ssh IP地址
2、在xshell的输入框直接输入目标主机的IP地址
3、新建链接,方便下次直接链接