配置SSH
安装ssh
full版本自带了ssh,lite需要手动安装
sudo apt install ssh
编辑sshd_config
文件
sudo vi /etc/ssh/sshd_config
设置允许密码登陆
将#PasswordAuthentication yes
前面的注释符去掉
设置允许root登陆(不建议)
将sshd_config
文件中的语句#PermitRootLogin prohibit-password
修改为:
PermitRootLogin yes
并去掉前面的注释符
保存文件,启动SSH服务
sudo systemctl start ssh
或重启ssh服务
sudo systemctl restart ssh
设置SSH开机自启动
sudo systemctl enable ssh