win11 ssh连接ubuntu 出现 command not found: cvs

sudo apt-get install openssh-client 
sudo apt-get install openssh-server 
ps -e | grep ssh
sudo /etc/init.d/ssh start 

仍然报错;  command not found: cvs

解决办法为:修改/etc/ssh/sshd_config 文件

修改:

58  PasswordAuthentication yes
59  PermitEmptyPasswords yes

注释:

123 #        ForceCommand cvs server

重启系统

连接成功

你可能感兴趣的:(ssh,ubuntu,运维)