1、网络设置
参考博客:《Ubuntu 22.04 配置静态IP》、《虚拟机上网设置——桥接模式 & NAT模式》;
2、报错:failed to create hard link
参考博客:《Ubuntu中报错:failed to create hard link》;
3、修改用户密码
(1)sudo passwd + 用户名;
(2)输入新密码;
4、切换到root用户
sudo -s
5、Secure CRT连接Ubuntu报错:Key exchange failed
vi /etc/ssh/sshd_config
#加入下面的文本
KexAlgorithms curve25519-sha256@libssh.org,ecdh-sha2-nistp256,ecdh-sha2-nistp384,ecdh-sha2-nistp521,diffie-hellman-group-exchange-sha256,diffie-hellman-group14-sha1,diffie-hellman-group-exchange-sha1,diffie-hellman-group1-sha1
#重启ssh
systemctl restart sshd.service
(1)报错原因:Secure CRT和Ubuntu的ssh协议版本不匹配,一般是Secure CRT版本比较旧;
(2)第一张解决办法:升级Secure CRT软件到更新一点版本;
(3)第二种办法:修改Ubuntu的配置文件,如上;