一、VM虚拟机设置
下载官方免费版
Workstation 15.5 Player for Windows
https://www.vmware.com/go/getplayer-win
1.虚拟机设置—网络适配器:选择NAT模式
二、centos设置项
centos8
http://mirrors.aliyun.com/centos/8.1.1911/isos/x86_64/CentOS-8.1.1911-x86_64-dvd1.iso
1.centos用root用户安装ssh服务
使用管理员,root用户登陆Linux服务器,
查看是否安装ssh服务:【rpm -qa|grep ssh】
若没有安装,执行**【yum install openssh-server】**
2.开启ssh服务
查看ssh是否开启,是否开启22端口:【netstat -antp | grep sshd】
开启ssh服务命令:【systemctl start sshd】
关闭ssh服务命令:【systemctl stop sshd】
重启ssh服务命令:【systemctl restart sshd】
3.设置SSH服务为开机启动
开机启动命令:【systemctl enable sshd】
禁止开机启动命令:【systemctl disable sshd】
4.查看centos8 iP
【ifconfig】
三、putty连接
putty
https://www.chiark.greenend.org.uk/~sgtatham/putty/latest.html