2022年11月23日
SSH安装配置
先用下面两个命令升级了基础安装包
sudo apt update
sudo apt upgrade
然后下载了openssh-server服务器
sudo apt install openssh-server
sudo apt install openssh-cilent
//cilent端在Ubuntu22.04的基础环境里就已经有配置了
按照教程配置免密操作的时候出现了重大问题
chmod修改完权限之后无法修改回去,且此时用vim打开其他文档也会报错
修复方式:
pkexec chmod 440 /etc/sudoers
更换了配置方式,代码如下
sudo vim /etc/ssh/sshd_config
//该文件是只读文件,建议使用sudo提升命令层级
//在文件末尾添加两行
PermitRootLogin yes
PasswordAuthentication yes
保存文件之后重启sshd就可以使用远程登陆了
。