Connecting to a Jetson Nano with Ubuntu 18.04 Using VS Code

Posted on Fri 28 March 2025 in nano, ubuntu, vscode • Tagged with nano, ubuntu, vscode

If you're trying to connect remotely to an NVIDIA Jetson Nano running Ubuntu 18.04 with Visual Studio Code (VS Code), you might run into a compatibility issue due to recent changes in VS Code's remote server requirements.

Starting from release 1.99 (March 2025), VS Code’s prebuilt remote server is only compatible with Linux distributions using glibc 2.28 or later. However, Ubuntu 18.04 ships with glibc 2.27, making it incompatible with these newer releases.

Solution: Use an Older Version of VS Code (1.98.2)

To work around this limitation, you can use VS Code 1.98.2, which is the last version compatible with Ubuntu 18.04. Here’s how to do it:

1. Download VS Code 1.98.2 (Portable Version)

Since later versions may not work, download the portable version of VS Code 1.98.2 for your platform:

  • Windows (Portable): Download here
  • Other platforms: Follow the instructions in the VS Code FAQ to find the appropriate link.

2. Extract and Run VS Code

If you downloaded …


Continue reading

Configuring Ubuntu Server 20.04 LTS gateway

Posted on Wed 20 October 2021 in Ubuntu • Tagged with Ubuntu

The current version of Ubuntu Server 20.04 LTS uses netplan in order to configure the network. If it doesn't use cloud-init to provision the network, the network configuration will be in a YAML file in /etc/netplan. There you can change the network parameters, such as the default gateway if you have a fixed connection.

After changing them, run this command to apply them (remember that you may disconnect from the network, so don't run it from a remote connection!):

sudo netplan apply

A more detailed explanation can be found in this very helpful post at linuxize.