xshell连接本地虚拟机linux

环境:在windows下ping一下虚拟机的ip确保能ping通,同理在虚拟机下ping主机的ip如果此时能ping通(如果相互还不能ping通,可以看我的关于怎么配置的博客)

这时如果在x-shell下输入你的虚拟机ip通过ssh协议登入的话是很可能失败,因为你的linux很可能没有安装sshserver

在linux下输入ssh localhost如果出现这句话说明你的虚拟机没有安装ssh服务

ssh: connect to hostlocalhost port 22: Connection refused  

输入如下命令进行安装

sudo apt-get install –y openssh-server或者 sudo yum install –y openssh-server

安装完成后启动sshserver

service sshd start 

查看ssh状态

sudo service sshd status

如果出现:openssh-daemon (pid  3150) is running... 则表明启动成功

或者:ps –e | grep ssh

如果出现有sshd 表明启动成功

这时候在x-shell以ssh登入你的虚拟机下的linux就会成功了

具体的登录过程见百度经验:https://jingyan.baidu.com/article/48206aeada2e41216bd6b377.html

你可能感兴趣的:(linux)