JetsonNano配置ssh-putty远程登录

1、JetsonNano配置SSH

  • 安装ssh服务

    sudo apt-get install openssh-server
    
  • 启动ssh服务

    sudo /etc/init.d/ssh start
    
  • 设置开机自启

    sudo systemctl enable ssh
    

    关闭开机自启

    sudo systemctl disable ssh
    

    单次开启

    sudo systemctl start ssh
    

    关闭服务

    sudo systemctl stop ssh
    
  • 重启

    reboot
    
  • 获取IP地址

    ifconfig
    

2、远程端配置(以Ubuntu为例)

  • 安装putty

    sudo apt install putty
    
  • 启动putty

    putty
    
  • 登录

    Host Name:上述步骤中获得的Nano的IP地址,要保证远程端和Nano处于同一网段中

    Connection Type:SSH

    点击Open

  • 远程登录

    login as输入用户名,此处为Jetson

    password为密码,此处为123456

    回车后连接成功

posted @ 2022-05-07 20:32  SergeyuiL  阅读(815)  评论(0)    收藏  举报