Download Ubuntu Server 26.04 LTS – Official ISO & Install Guide

Share
  • Post Updated: April 23, 2026

Ubuntu 26.04 server iso cover - Download Ubuntu Server 26.04 LTS - Official ISO & Install GuideUbuntu Server 26.04 LTS Resolute Raccoon is available to download now from Canonical’s official release server. This is a long-term support release with free security updates until April 2031. Below you will find direct ISO links for Server AMD64 and ARM64, cloud image links, SHA256 verification steps, system requirements, and a step-by-step install walkthrough for the Subiquity text installer.

Released April 23, 2026  ·  LTS  ·  Server Edition
Download Ubuntu Server 26.04 LTS
Resolute Raccoon

No desktop interface. Text-based installer. Built to run 24/7 on servers, VPS instances, and home labs. Free to use. Supported until April 2031.

Kernel: Linux 7.0
Installer: Subiquity
Support: Until April 2031
cloud-init: Built-in

What You Need to Know
• No graphical interface – command line only
• 5-year free support, 10 years with Ubuntu Pro
• Linux kernel 7.0 with improved hardware and driver support
• Subiquity text installer – faster than the old alternate installer
• cloud-init built in for automated VPS and cloud provisioning
• OpenSSH Server available during install with one selection
• Official ARM64 ISO available alongside AMD64
• Snaps disabled by default on server installs

Which ISO Should You Download?

Ubuntu Server 26.04 comes in two main ISOs plus dedicated cloud images. Here is how to choose.

Edition Who It’s For Size Notes
Server AMD64 Recommended Standard servers, VPS installs, home lab machines, and most cloud providers (bare metal) ~2.7 GB Uses Subiquity text installer. No desktop environment included.
Server ARM64 ARM ARM-based servers, Raspberry Pi 4/5, Ampere Altra servers, ARM development boards ~2.9 GB Same Subiquity installer. Use only on ARM64 hardware.
Cloud Images AWS, Azure, Google Cloud, Oracle Cloud, DigitalOcean, and other managed cloud platforms Provider-supplied No ISO needed. Launch directly from your cloud provider dashboard or via cloud-images.ubuntu.com.
Ubuntu Desktop Personal computers and laptops that need a full graphical interface ~5.9 GB See our Ubuntu Desktop 26.04 download guide.

Official Download Links

All links point directly to releases.ubuntu.com, Canonical’s official release server.

🖥
Server (AMD64)
For: Intel & AMD 64-bit servers
Size: ~2.7 GB

⬇ Direct Download
⇅ Torrent

🔨
Server (ARM64) ARM
For: ARM servers, Raspberry Pi 4/5, ARM boards
Size: ~2.9 GB

⬇ Direct Download
⇅ Torrent

Cloud Images
For: AWS, Azure, GCP, Oracle Cloud
Format: Provider-ready images

↗ cloud-images.ubuntu.com

Note: Direct ISO links may take a few hours to fully propagate. If a link does not load, go to releases.ubuntu.com/26.04/ and download directly from the file listing. Look for files starting with ubuntu-26.04-live-server-.

How to Verify Your Download (SHA256)

Always verify your ISO before writing it to USB or booting it on a server. This confirms the file downloaded completely and was not corrupted in transit.

1
Download the SHA256SUMS fileGo to releases.ubuntu.com/26.04/ and save the SHA256SUMS file to the same folder as your downloaded ISO.
2

Run the checksum in a terminalOn Linux or macOS:

sha256sum ubuntu-26.04-live-server-amd64.iso

On Windows (PowerShell):

Get-FileHash ubuntu-26.04-live-server-amd64.iso -Algorithm SHA256
3
Compare the output to the SHA256SUMS fileThe string of characters must match exactly. If even one character differs, the file is corrupted. Delete it and download again.

System Requirements

Ubuntu Server has much lower hardware requirements than the desktop edition because it runs no graphical interface.

Minimum
  • CPU: 1 GHz 64-bit processor
  • RAM: 1 GB
  • Storage: 2.9 GB
  • Network: Ethernet (recommended for server use)
Recommended (Practical)
  • CPU: 2-core 64-bit processor
  • RAM: 2-4 GB depending on workload
  • Storage: 20+ GB SSD for room to grow
  • Network: Wired ethernet, static IP recommended

How to Install Ubuntu Server 26.04

The Subiquity installer is text-based but straightforward. Here is what to expect from start to finish.

1
Write the ISO to a USB driveUse Rufus on Windows or Balena Etcher on macOS or Linux. Select the server ISO file and your USB drive. All data on the USB will be erased.
2
Boot from the USBInsert the USB into your server and power it on. If the installer does not start automatically, enter your BIOS/UEFI (usually by pressing F2, F12, or Delete during startup) and set the USB drive as the first boot device.
3
Select language and keyboardThe first two Subiquity screens ask for your language and keyboard layout. Use the arrow keys to navigate, Enter to confirm. For most users, English and the default keyboard layout are correct.
4
Configure networkingSubiquity detects your network interfaces automatically. If you are on a wired network with DHCP, it will assign an IP address without any input needed. If you need a static IP, select your interface and choose “Edit IPv4” to configure it manually.
5
Configure storageThe recommended option is “Use an entire disk.” This sets up a simple layout with one partition for the system and a swap area. Advanced users can choose “Custom storage layout” for LVM, ZFS, or RAID configurations. Unless you have a specific reason, use the recommended option.
6
Create your user accountEnter a name, a server hostname, a username, and a password. This account gets sudo privileges, meaning it can run administrative commands when needed. Choose a strong password, especially if this server will be reachable from the internet.
7
Install OpenSSH ServerThe next screen asks whether to install OpenSSH Server. Select this option. Without SSH, you cannot connect to the server remotely from another machine. You can also import your SSH public key from GitHub or Launchpad at this step if you prefer key-based login over passwords.
8
Wait for install to complete, then rebootThe installer copies files and applies updates. When it finishes, it shows a “Reboot Now” prompt. Remove the USB drive when asked, then press Enter. The system will boot into your new Ubuntu Server 26.04 installation.

First Steps After Installing

Once you log in for the first time, run these three commands to get your server into a clean, secure baseline state.

1. Update all packages
sudo apt update && sudo apt upgrade -y

This pulls the latest security patches and package versions. Run this immediately after every fresh install.

2. Enable the firewall
sudo ufw allow OpenSSH
sudo ufw enable

UFW is Ubuntu’s built-in firewall. The first command allows your SSH connection through before you enable it, so you do not lock yourself out. Always allow SSH first.

3. Check your server’s IP address
ip a

This shows your network interfaces and IP addresses. Note the IP under your main ethernet interface (usually named eth0 or ens3). You will need it to connect via SSH from another machine.

Ready to Deploy?
Get Ubuntu Server 26.04 LTS Now

Free. Open source. Supported until April 2031.

Frequently Asked Questions

What is the difference between Ubuntu Desktop and Ubuntu Server?

Ubuntu Desktop includes a graphical interface (GNOME) and a full app suite designed for everyday use on a personal computer. Ubuntu Server has no graphical interface. Everything is managed through the command line. It is designed to run continuously as a web server, database host, file server, or other backend service. The server edition uses fewer resources because it does not run a desktop environment.

Can I install a desktop environment on Ubuntu Server 26.04 later?

Yes. After installing Ubuntu Server, you can add a desktop environment at any time using the terminal. The most common choice is to run: sudo apt install ubuntu-desktop. This installs the full GNOME desktop. However, most server use cases do not need a desktop, and adding one increases resource usage and the attack surface.

What is the live-server ISO and how does it differ from the older alternate installer?

The live-server ISO uses Subiquity, which is Canonical’s modern text-based installer. It replaced the older Debian-style alternate installer starting with Ubuntu 20.04. Subiquity runs faster, supports automated installs via cloud-init, and handles LVM and ZFS storage configurations more cleanly. There is no longer a separate alternate ISO for Ubuntu Server.

What are the minimum system requirements for Ubuntu Server 26.04?

The minimum requirements are a 64-bit processor, 1 GB of RAM, and 2.5 GB of disk space. In practice, a usable server installation with room to grow needs at least 20 GB of disk space and 2 GB of RAM, depending on what services you plan to run.

Does Ubuntu Server 26.04 support cloud deployments?

Yes. Canonical publishes official Ubuntu Server 26.04 images for AWS, Azure, Google Cloud, Oracle Cloud, and other providers. These images include cloud-init pre-configured so your cloud provider can inject SSH keys, hostname settings, and startup scripts automatically. You can find the full index at cloud-images.ubuntu.com.

How do I access my Ubuntu Server remotely after installing it?

During installation, Subiquity offers to install OpenSSH Server. If you selected that option, SSH is ready immediately after the system reboots. Connect from another machine using: ssh your-username@server-ip-address. If you did not install SSH during setup, you can add it afterward by running: sudo apt install openssh-server.

Is Ubuntu Server 26.04 LTS suitable for a VPS?

Yes. Ubuntu Server is one of the most widely used operating systems on VPS providers including DigitalOcean, Linode, Vultr, and Hetzner. Most VPS control panels offer Ubuntu Server 26.04 LTS as a one-click install option directly, meaning you may not need to download the ISO at all for cloud use. The ISO is primarily needed for bare-metal installs.

More Ubuntu 26.04 guides: Ubuntu Desktop 26.04 Download  ·  How to Upgrade to 26.04  ·  Ubuntu 26.04 New Features