Ubuntu 26.04 LTS “Resolute Raccoon” was released on April 23, 2026 with Linux kernel 7.0, GNOME desktop, and standard security support until April 2031. A clean install gives you a known-good starting point on new hardware, when replacing another operating system, or when an upgrade path is not practical.
This guide walks through how to install Ubuntu 26.04: downloading and verifying the ISO, writing a bootable USB drive, completing the installer, and doing the initial setup after the first boot.
Before you start: You need a USB drive with at least 12 GB of free space. Back up any existing data on the target machine — the installer can erase the entire disk.
Download the desktop ISO from the official Ubuntu downloads page. The file is ubuntu-26.04-desktop-amd64.iso at about 6.1 GB.
Verify the download before writing to USB. A corrupted ISO causes installer crashes that are difficult to diagnose. Download the checksum file and compare it:
bashwget https://releases.ubuntu.com/26.04/SHA256SUMSsha256sum -c SHA256SUMS --ignore-missing
The output should show ubuntu-26.04-desktop-amd64.iso: OK. On Windows, use Get-FileHash in PowerShell. On macOS, use shasum -a 256.
Write the ISO to a USB drive. Use Rufus on Windows, balenaEtcher on macOS, or dd on Linux.
On Windows with Rufus: select the ISO, keep Write in ISO Image mode, and set the partition scheme to GPT with target system UEFI (non CSM) for modern hardware. Use MBR only for legacy BIOS systems.
On Linux with dd: find the USB device with lsblk -d -o NAME,SIZE,MODEL. Write to the whole device, not a partition:
bashsudo umount /dev/sdb*sudo dd if=ubuntu-26.04-desktop-amd64.iso of=/dev/sdb bs=4M status=progress oflag=sync
The oflag=sync flag forces data to flush to the USB before the command exits. Writing to /dev/sdb1 instead of /dev/sdb corrupts the partition table.
Insert the USB, restart, and open the boot menu with F12, F10, F9, Esc, or Del depending on your machine. Select Try or Install Ubuntu.
The installer guides you through each screen in order:
/boot/efi partition and a 25 GB+ ext4 root / partition. Adding a separate /home partition lets you reinstall Ubuntu later without touching your files. Ubuntu uses a swap file by default, only create a swap partition if you need hibernation, sized at least as large as your RAM. If an existing EFI partition is already on disk from another OS, reuse it with /boot/efi as the mount point and leave the format checkbox unchecked to preserve the other system’s boot entrysudo access, so choose a strong oneRemove the USB drive when prompted after the installation finishes, then reboot.
After the first login, install available updates:
bashsudo apt update && sudo apt upgrade
Verify the installed version:
bashlsb_release -a
If this machine will be accessed remotely, set up SSH and configure the UFW firewall. For a full post-install checklist covering drivers, media codecs, and desktop tweaks, see the things to do after installing Ubuntu 26.04 guide.
Ubuntu 26.04 is now installed. The first priority is updates, then hardware verification, and then adding only the applications and services your setup needs. Leave a comment below if you run into any issues.
PHP 8.5 is included in Ubuntu 26.04's default repositories and is the recommended version for…
Ubuntu 26.04 LTS "Resolute Raccoon" arrived on April 23, 2026 with Linux kernel 7.0, GNOME 50,…
Kubernetes is the standard platform for running containerized workloads across multiple servers with self-healing, rolling…
The correct timezone affects more than the clock on your screen. It drives cron job scheduling, systemd timer execution, log file timestamps, database record timing, and SSL certificate validity checks. A mismatched timezone can cause scheduled jobs to fire at the wrong hour and make log timestamps impossible to match with real-world events. This guide shows how to change timezone on Ubuntu using the timedatectl command (the recommended approach for servers and remote machines) and through the graphical Date & Time settings on desktop systems. The steps apply to all current Ubuntu releases including 24.04 and 26.04. <strong>Prerequisite:</strong> Only the root user or a user with sudo access can change the system timezone. Check the Current Timezone Before You Change It Run timedatectl with no arguments to see the active timezone and clock status: bashtimedatectl Sample output: Local…
Atom is a free, open-source, cross-platform code editor developed by GitHub. Built on Electron, it uses…
MariaDB is an open-source, multi-threaded relational database management system and a fully backward-compatible replacement for MySQL.…