Launch an Ubuntu desktop on EC2

This is a how-to guide on how to launch an Ubuntu desktop as an EC2 instance.

It will go over launching the instance via the EC2 console, and via the AWS CLI. Lastly, it shows you how to connect to the instance using RDP.

Note

To ensure that you are selecting the latest Long Term Support (LTS) or Pro version, check the Ubuntu release notes for any updates.

Launch the instance

There are two popular ways to launch an instance: using the EC2 console or using the AWS CLI to interact with the AWS API. Select the one you are most comfortable with.

Use the EC2 Console

  1. On the EC2 console, launch an instance by selecting an Ubuntu AMI.

    ../../../_images/2a_Launch_instance.png
  2. The recommended hardware requirements to run an Ubuntu desktop is at least 2 CPU cores, 8GB of RAM, and 8GB of volume. However, if you intend to install additional applications, you need a higher volume size.

  3. Configure your security group to allow SSH and RDP ports (22 and 3389 respectively).

    ../../../_images/2b_Launch_instance.png

Use the AWS CLI

  1. Retrieve the latest AMI ID for the EC2 instance using one of the following CLI commands:

    • Ubuntu LTS:

      aws ssm get-parameters --names /aws/service/canonical/ubuntu/server/24.04/stable/current/arm64/hvm/ebs-gp3/ami-id
      
    • Ubuntu Pro:

      aws ssm get-parameters --names /aws/service/canonical/ubuntu/pro-server/24.04/stable/current/arm64/hvm/ebs-gp3/ami-id
      
  2. Launch the instance using AWS CLI.

Install Ubuntu desktop and the snap store

There are several popular ways to access the terminal of your server:

  1. Using an SSH client like PuTTY if you are running Windows

  2. The ssh command executed in the terminal of your Linux, Mac, or Windows device.

  3. The AWS EC2 Instance Connect feature

    ../../../_images/2c_Launch_instance.png

After logging into your server, execute the commands below to install the Ubuntu desktop packages.

sudo apt-get update && apt-get upgrade -y
sudo apt-get install -y ubuntu-desktop
sudo snap install snap-store --edge
sudo reboot

Note

Don’t disconnect the session after executing these commands. The installation process may take several minutes, and a disconnection could interrupt it.

Install and configure RDP

Install the xrdp server:

sudo apt-get install -y xrdp

Configure it to use SSL to get an encrypted connection:

sudo usermod -a -G ssl-cert xrdp

Set up a password for the Ubuntu user:

sudo passwd ubuntu

Restart the service:

sudo systemctl restart xrdp

Connect to your instance

Connect to your instance using your favorite RDP client. You can get the public IP address of the instance from the EC2 console. The RDP connection port is 3389.

The default username for the EC2 instance is ubuntu.

When prompted to input a password, use the password you configured for the user.

../../../_images/2d_Launch_instance.png