Changes between Version 22 and Version 23 of InstallationInstructions


Ignore:
Timestamp:
Oct 16, 2023, 4:20:58 PM (9 months ago)
Author:
hales
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • InstallationInstructions

    v22 v23  
    6161  sudo pip2 install qibuild paramiko
    6262  }}}
     63* [=#ssh setup easy **ssh** access] to the robot via the SSH config file
     64
     65  Create a special SSH key using the command:
     66  {{{
     67  ssh-keygen -m PEM -t ecdsa -N '' -f ~/.ssh/pepper
     68  }}}
     69 
     70  Add the following lines to `~/.ssh/config` (replace `HostName` IP address with the actual IP of your robot):
     71  {{{
     72Host pepper
     73    User nao
     74    HostName 192.168.0.10
     75    # IdentityFile is important for install_pkg.py
     76    IdentityFile ~/.ssh/pepper
     77    StrictHostKeyChecking no
     78    PubkeyAuthentication yes
     79  }}}