01-02 putty连接windows10子系统 linux

1、卸载ssh-server
sudo apt-get purge openssh-server

01-02 putty连接windows10子系统 linux_第1张图片

2、安装
sudo apt-get install openssh-server

01-02 putty连接windows10子系统 linux_第2张图片

3、修改配置
sudo vim /etc/ssh/sshd_config

配置

PermitRootLogin no  #禁止root账户登录
AllowUsers [username]  #允许登录的用户 没有就添加
PasswordAuthentication yes #使用密码登录

Port 22 #端口,可以不添加,默认就是22
4、重启ssh-server
sudo service ssh --full-restart
5、putty登录,ip为: 127.0.0.1,端口默认为22

01-02 putty连接windows10子系统 linux_第3张图片

最后安利一个自学java的网站:https://how2j.cn?p=73165

你可能感兴趣的:(linux)