红联Linux门户
Linux帮助

ev3dev:利用ssh登录系统

发布时间:2016-08-31 14:51:19来源:linux网站作者:立体风
ev3dev是在debian 8 的基础上修改的,主页上只介绍了利用usb连接系统后,ssh登录的方法。
可是我想用wifi连接到网络后,用ssh登录,非usb线连接。
ev3dev的默认用户名为:robot,默认密码:maker
 
1、其实很简单,debian 8 默认关闭了ssh的远程登录。只要打开远程登录就可以了。
 
2、首先要利用usb线连接,并登录系统。
 
3、ssh robot@ev3dev.local
 
4、登录成功后,运行:vim /etc/ssh/sshd_config
 
5、找到这样一段:
# Authentication:
LoginGraceTime 120
PermitRootLogin without-password
StrictModes yes
 
6、将 PermitRootLogin without-password 修改为:
PermitRootLogin yes
 
7、重启,ok。
 
本文永久更新地址:http://www.linuxdiyf.com/linux/23772.html