vscode remote ssh aarch64
https://code.visualstudio.com/docs/remote/ssh
Visual Studio Code のRemote SSH でaarch64 がサポートされていたので、Rasperry Pi 4 のUbuntu focal aarch64 に接続してみました。

環境

クライアント

  • Windows 10 Pro Insider Preview
  • WSL 2 (Ubuntu 18.04.3 x86_64)
  • Visual Studio Code 1.41.1
  • Remote Development 0.19.0
  • Remote SSH 0.48.0

サーバ

  • Raspberry Pi 4B
  • Ubuntu Focal(20.04) aarch64

構築

SSH 接続の設定

  • WSL2 から鍵登録

    $ ssh-copy-id -i /mnt/c/Users/hoge/.ssh/id_rsa.pub ubuntu@192.168.11.26
  • 接続情報

    C:\Users\hoge\.ssh\ssh_config
    # Read more about SSH config files: https://linux.die.net/man/5/ssh_config
    Host pi2
    HostName 192.168.11.106
    User ubuntu
    IdentityFile C:\Users\hoge\.ssh\id_rsa

利用