标签:cli 观察 版权 password roo rmi pen details ati
Ubuntu安装和配置ssh教程
置顶 IT观察者 2018-08-15 12:02:29 50132 收藏 61
分类专栏: 工具 ubuntu 文章标签: ssh Ubuntu
版权
一般Ubuntu都会默认安装openssh-client,但是没有安装openssh-server。
安装ssh服务器
sudo apt install openssh-server
安装ssh客户端
sudo apt install openssh-client
配置ssh客户端,去掉PasswordAuthentication yes前面的#号,保存退出
sudo vi /etc/ssh/ssh_config
配置ssh服务器,把PermitRootLogin prohibit-password改成PermitRootLogin yes,保存退出。
重启ssh服务
sudo /etc/init.d/ssh restart
————————————————
版权声明:本文为CSDN博主「IT观察者」的原创文章,遵循CC 4.0 BY-SA版权协议,转载请附上原文出处链接及本声明。
原文链接:https://blog.csdn.net/future_ai/article/details/81701744
标签:cli 观察 版权 password roo rmi pen details ati
原文地址:https://www.cnblogs.com/liuxuelin/p/14615118.html