Up PC から RaspberryPi に IP接続 作成: 2021-03-11
更新: 2021-03-13


  • RaspberryPi には,DHCP によって IPアドレスが割り振られている。
    これを知る:
      $ arp -a

  • PC から RaspberryPi への IP接続は,
        user ID : pi
        password : robots1234
    で,つぎの2通り:

    1. ssh 接続
        $ ssh pi@[IPアドレス]
    2. ブラウザから http 接続
        http://[IPアドレス]


    ブラウザからの http 接続では,つぎの画面になる:


    "Launch VNC" ボタンがある。
    これは,つぎにリンクしている:
      http://192.168.1.150:8001/vnc.html?host=192.168.1.150&port=8001&autoconnect=true&password=robots1234&scaleViewport=true
    (パスワードが 「robots1234」となっている)

    ボタンをクリックすると,ブラウザが Raspbian for robots の VNC ビューワーになる:




    備考 $ arp -a ‥‥ ? (192.168.1.29) at b8:27:eb:49:40:35 on en0 ifscope [ethernet] ‥‥ $ ssh pi@192.168.1.29 The authenticity of host '192.168.1.29 (192.168.1.29)' can't be established. RSA key fingerprint is 5d:cc:99:ce:91:58:25:7b:03:95:b1:0f:f6:c6:52:4d. Are you sure you want to continue connecting (yes/no)? [yes] Warning: Permanently added '192.168.1.29' (RSA) to the list of known hosts. pi@192.168.1.29's password: [robots1234] Linux dex 4.14.98-v7+ #1200 SMP Tue Feb 12 20:27:48 GMT 2019 armv7l The programs included with the Debian GNU/Linux system are free software; the exact distribution terms for each program are described in the individual files in /usr/share/doc/*/copyright. Debian GNU/Linux comes with ABSOLUTELY NO WARRANTY, to the extent permitted by applicable law. Last login: Fri Apr 5 13:26:43 2019 pi@dex:~ $