Skip to content

Sanity Check VS Code Servers

João Moreno edited this page Dec 14, 2022 · 25 revisions

Note that for the servers, you do not need to manually download any server bits.

Linux Platforms

Note that you only need to use VS Code with the Remote-Containers extension and Docker to verify the servers. You do not need to manually install or run qemu.

  1. Install VS Code at the exact version (commit) that needs sanity checking.
  2. Install the Remote-Containers extension.
  3. Run the following commands. They register the QEMU hardware emulator and start 5 kinds of containers:
docker run --rm --privileged hypriot/qemu-register
docker run -d ubuntu sleep infinity
docker run -d arm32v7/ubuntu /bin/sh -c 'apt update && apt install -y libatomic1 && sleep infinity'
docker run -d arm64v8/ubuntu sleep infinity
docker run -d alpine sleep infinity
docker run -d arm64v8/alpine sleep infinity

Note: on ARM64 make sure to append --platform linux/amd64 to each command to make it work.

  1. Check that you can connect to each of the containers from the Remote Explorer.
    • Check which platform you are on by running uname -m from the integrated terminal. (Expect: x86_64, armv7l and aarch64)
    • Alpine Linux runs on x86_64 and aarch64, check cat /etc/os-release shows Alpine as the distro.
  2. Use the Remote Explorer to remove the containers. (Note that the current window's container cannot be removed, use a new window instead.)

Windows

Use the Remote-SSH extension to connect from any client platform to a Windows remote. You can connect to localhost on your own Windows machine, a parallels VM, or another machine. You'll need to set up and start OpenSSH services, such as the OpenSSH SSH Server service and the OpenSSH Authentication Agent service.

Note: if you are an AAD user on your Windows machine, you may have to apply this workaround.

Here is an example localhost config that can be added to your SSH config file:

Host localhost
    HostName localhost
    User <username>@microsoft.com

Where <username> can be found by running whoami /user on cmd.exe. When connecting, the password is the same as the user password (which might be the Active Directory password, but definitely not the login pin).

macOS

Use the Remote-SSH extension to connect from any client platform to a macOS remote (connecting to localhost is ok). To start the SSH server, you just have to enable Remote Login as described here.

Clone this wiki locally