windows下远程Ubuntu
1.Ubuntu使用命令安装ssh
首先确认是否安装ssh:dpkg -l | grep ssh
安装ssh:sudo apt-get install openssh-server
确实安装成功:ps -e | grep ssh 出现sshd说明ssh-server已启动
2.windows下使用xshell或者finalshell
连接Ubuntu
ps:ssh-server启动、停止和重启命令
sudo /etc/init.d/ssh start #server启动ssh服务
sudo /etc/init.d/ssh stop #server停止ssh服务
sudo /etc/init.d/ssh restart #server重启ssh服务
0条评论