AWS Builder Center: Learn, Build and Connect with builders in the AWS community
AWS Builder Center is the official home for builders on AWS. Share and read what others are working on, follow people who inspire you, explore training and workshops, and find tools to support what you're building.
Install GUI (graphical desktop) on Amazon EC2 instances running Amazon Linux 2 (AL2)
Steps to install desktop environment, desktop manager and Amazon DCV high performance remote display protocol server on Amazon Linux 2 (AL2)
EOL Notice
Support for Amazon Linux 2 ends on 2026-06-30
Overview
This article suggests how you can install GUI (Graphical User Interface) on Amazon EC2 instances running Amazon Linux 2, and access it using Amazon DCV remote display protocol.
This article applies to AL2 only. Similar articles are available for AL2023, Ubuntu Linux, RHEL/Rocky Linux and SLES 15
GPU instance
If you are using a NVIDIA GPU instances, ensure graphics drivers are installed first. Refer to Install NVIDIA GPU driver, CUDA Toolkit, NVIDIA Container Toolkit on Amazon EC2 instances running Amazon Linux 2 (AL2) and NVIDIA drivers for your Amazon EC2 instance for options.
Notice
Support for Amazon Linux 2 will end on 2026-06-30
Your use of DCV is subject to DCV end user license agreement
Requirements
Supported OS versions
The following versions are supported by Amazon DCV server
- Amazon Linux 2 (x86_64)
- Amazon Linux 2 (arm64)
EC2 instance prerequisites
- EC2 instance with 2 GiB or more memory
- Attached security group allows inbound TCP and UDP port
8443from your IP - More than 3 GB free disk space to install graphical desktop components and DCV server
- Attached EC2 IAM role with the below policy for license validation. Replace
REGIONwith your instance AWS Region code. Alternatively, attach AmazonS3ReadOnlyAccess managed policy.
{
"Version": "2012-10-17",
"Statement": [
{
"Effect": "Allow",
"Action": "s3:GetObject",
"Resource": "arn:aws:s3:::dcv-license.REGION/*"
}
]
}
Installing DCV
Install desktop environment and desktop manager
Install GNOME desktop
sudo yum install -y gdm gnome-session gnome-classic-session gnome-session-xsession sudo yum install -y xorg-x11-server-Xorg xorg-x11-fonts-Type1 xorg-x11-drivers sudo yum install -y gnome-terminal gnu-free-fonts-common gnu-free-mono-fonts gnu-free-sans-fonts gnu-free-serif-fonts sudo systemctl set-default graphical.target
Install DCV server
Install DCV server, web client and virtual session support, and enable server daemon
cd /tmp sudo rpm --import https://d1uj6qtbmh3dt5.cloudfront.net/NICE-GPG-KEY curl -L -O https://d1uj6qtbmh3dt5.cloudfront.net/nice-dcv-amzn2-$(arch).tgz tar -xvzf nice-dcv-amzn2-$(arch).tgz && cd nice-dcv-*-amzn2-$(arch) sudo yum install -y ./nice-dcv-server-*.rpm sudo yum install -y ./nice-dcv-web-viewer-*.rpm sudo yum install -y ./nice-xdcv-*.rpm sudo systemctl enable dcvserver
Console session XDummy driver
Install and configure XDummy driver. Run NVIDIA xorg.conf configurator if NVIDIA GPU desktop drivers are installed.
sudo yum install -y xorg-x11-drv-dummy sudo tee /etc/X11/xorg.conf > /dev/null << EOF Section "Device" Identifier "DummyDevice" Driver "dummy" Option "UseEDID" "false" VideoRam 512000 EndSection Section "Monitor" Identifier "DummyMonitor" HorizSync 5.0 - 1000.0 VertRefresh 5.0 - 200.0 Option "ReducedBlanking" EndSection Section "Screen" Identifier "DummyScreen" Device "DummyDevice" Monitor "DummyMonitor" DefaultDepth 24 SubSection "Display" Viewport 0 0 Depth 24 Virtual 4096 2160 EndSubSection EndSection EOF if [ -f /usr/bin/nvidia-xconfig ]; then sudo /usr/bin/nvidia-xconfig --preserve-busid --enable-all-gpus sudo yum install -y glx-utils clinfo fi
Configure DCV server
Configure console session and enable session storage for file transfer support.
sudo sed -i "/^\[session-management\/automatic-console-session/a owner=\"ec2-user\"\nstorage-root=\"%home%\"" /etc/dcv/dcv.conf sudo sed -i "s/^#create-session/create-session/g" /etc/dcv/dcv.conf
Restart X server and DCV server
sudo systemctl isolate multi-user.target && sudo systemctl isolate graphical.target sudo systemctl stop dcvserver && sudo systemctl start dcvserver
Set user password
Specify a strong password for login user
sudo passwd ec2-user
Access graphical desktop environment
Clients
DCV offers Windows, Linux, macOS and web browser clients.
You can connect to DCV server using web browser client at https://<EC2-IP>:8443 (where <EC2-IP> is your EC2 instance IP address).
Native clients provide better user experience and additional features, and can be downloaded from Amazon DCV site.
Login as ec2-user with your configured password
Do ensure that EC2 instance security group allow inbound TCP and UDP 8443 from your IP
Web browser client
EC2 Install Script
You can use the below as install script (or user data) on a new AL2 EC2 instance.
Comment out the line sudo /usr/bin/nvidia-xconfig --preserve-busid --enable-all-gpus if you do not want NVIDIA GPU accelerated graphics or intend to switch between instance types
#!/bin/bash sudo yum install -y gdm gnome-session gnome-classic-session gnome-session-xsession sudo yum install -y xorg-x11-server-Xorg xorg-x11-fonts-Type1 xorg-x11-drivers sudo yum install -y gnome-terminal gnu-free-fonts-common gnu-free-mono-fonts gnu-free-sans-fonts gnu-free-serif-fonts sudo systemctl set-default graphical.target cd /tmp sudo rpm --import https://d1uj6qtbmh3dt5.cloudfront.net/NICE-GPG-KEY curl -L -O https://d1uj6qtbmh3dt5.cloudfront.net/nice-dcv-amzn2-$(arch).tgz tar -xvzf nice-dcv-amzn2-$(arch).tgz && cd nice-dcv-*-amzn2-$(arch) sudo yum install -y ./nice-dcv-server-*.rpm sudo yum install -y ./nice-dcv-web-viewer-*.rpm sudo yum install -y ./nice-xdcv-*.rpm sudo systemctl enable dcvserver sudo sed -i "/^\[session-management\/automatic-console-session/a owner=\"ec2-user\"\nstorage-root=\"%home%\"" /etc/dcv/dcv.conf sudo sed -i "s/^#create-session/create-session/g" /etc/dcv/dcv.conf sudo yum install -y xorg-x11-drv-dummy sudo tee /etc/X11/xorg.conf > /dev/null << EOF Section "Device" Identifier "DummyDevice" Driver "dummy" Option "UseEDID" "false" VideoRam 512000 EndSection Section "Monitor" Identifier "DummyMonitor" HorizSync 5.0 - 1000.0 VertRefresh 5.0 - 200.0 Option "ReducedBlanking" EndSection Section "Screen" Identifier "DummyScreen" Device "DummyDevice" Monitor "DummyMonitor" DefaultDepth 24 SubSection "Display" Viewport 0 0 Depth 24 Virtual 4096 2160 EndSubSection EndSection EOF if [ -f /usr/bin/nvidia-xconfig ]; then sudo /usr/bin/nvidia-xconfig --preserve-busid --enable-all-gpus sudo yum install -y glx-utils clinfo fi sudo systemctl isolate multi-user.target && sudo systemctl isolate graphical.target sudo systemctl stop dcvserver && sudo systemctl start dcvserver
Restart your EC2 instance and set ec2-user user password
Additional information
For help with DCV, refer to DCV Administrator Guide and User Guide
For help navigating graphical desktop, refer to Learn GNOME
DCV sessions
Amazon DCV on Linux offers two types of sessions: console sessions and virtual sessions. This article use console sessions, which has resolution limits especially on non GPU instances. Virtual sessions support custom resolution and multiple displays.
To switch to virtual session, connect to EC2 instance as ec2-user, disable console session, configure multi-user.target (optional) and reboot
sudo sed -i "s/^create-session/#create-session/g" /etc/dcv/dcv.conf sudo systemctl restart dcvserver sudo systemctl set-default multi-user.target sudo systemctl isolate multi-user.target sudo reboot
You will need to create a virtual session manually
/usr/bin/dcv create-session ec2-user --owner ec2-user --storage-root %home% --type virtual
Verify that virtual session has been created
sudo dcv list-sessions
Output should be similiar to below
Session: 'ec2-user' (owner:ec2-user type:virtual)
Refer to Using the command line on a Linux Amazon DCV Server for more information
Other options
Consider managed EUC (End User Computing) services such as Amazon WorkSpaces
Install prerequisites including desktop environment and Amazon DCV Server from Amazon DCV Administrator Guide
To quickly get up and running with DCV for internal testing, you can use CloudFormation template at DCV CloudFormation page.
You can also explore amazon-ec2-nice-dcv-samples CloudFormation templates to provision your own EC2 instances with graphical desktop environment, DCV server and other features such as multiple virtual sessions support and GPU driver installation.
AMIs preconfigured with graphical desktop environment are available from AWS Marketplace.
- Topics
- Compute
- Language
- English
Relevant content
AWS OFFICIALUpdated 3 months ago