1.宿主用xp,虚拟机用redhat5,因为在不开STARTX的情况下vm不好操作,所以要在宿主机上用putty连接虚拟主机练习
2.网络用NAT,安装完虚拟机后发现宿主机上未发现VMware Network Adapter VMnet8这个虚拟网卡,在VM的安装目录中运行vmnetcfg.exe,如下图设置
3.在宿主和虚拟机上ping对方都能通后,确认是否安装SSH服务
开启ssh服务:service sshd start
service sshd stop
重启ssh服务:
servcie sshd restartSSH服务开机自动启动:
chkconfig sshd on
取消开机自启动:
chkconfig sshd off开启服务后,检查服务状态:
service sshd status
或
ssh username@localhost测试(前提必须安装了Linux下得ssh客户端软件包)
或者在Windows机器上,利用putty等ssh客户端工具远程连接。
若能成功登入,说明SSH服务已经可用。
若不能成功登入,请检查防火墙设置。查看防火墙状态:
/etc/init.d/iptables status
或
service iptables status
关闭防火墙:
/etc/rc.d/init.d/iptables stop
或
service iptables stop
或永久性关闭防火墙:
chkconfig iptables off
打开防火墙:
/etc/rc.d/init.d/iptables srart
或
service iptables start
或永久性关闭防火墙:
chkconfig iptables on
来源:CSDN
作者:lileizhang
链接:https://blog.csdn.net/lileizhang/article/details/14445333