管理员进入 cmd
删除 ubuntu: lxrun /uninstall /full
安装 ubuntu: lxrun /install
首先,确定是否有安装 SSH 服务
root@ubuntu:/home/ccbipj# ps -e | grep ssh*
如果没有任何显示,则没有安装该服务
其次,安装 SSH-server
root@ubuntu:/home/ccbipj# apt-get install openssh-server
接着,更重要的是安装 SSH-client
root@ubuntu:/home/ccbipj# apt-get install openssh-client
如启动 ssh 时有报找不到如下 key,按如下生成下即可。
ssh-keygen -t rsa -f /etc/ssh/ssh_host_rsa_key
ssh-keygen -t dsa -f /etc/ssh/ssh_host_dsa_key
ssh-keygen -t ecdsa -f /etc/ssh/ssh_host_ecdsa_key
ssh-keygen -t ed25519 -f /etc/ssh/ssh_host_ed25519_key
修改允许 root 登陆,允许密码登陆
Vim /etc/ssh/sshd_config
#PermitRootLogin prohibit-password
PermitRootLogin yes
PasswordAuthentication yes
欢迎来到这里!
我们正在构建一个小众社区,大家在这里相互信任,以平等 • 自由 • 奔放的价值观进行分享交流。最终,希望大家能够找到与自己志同道合的伙伴,共同成长。
注册 关于