Ubuntu 26.04.1 Just Hit the Mirrors: What I Saw
It's August 27, 2026, and I'm sitting at a real Ubuntu 24.04.1 box. All week I've been waiting for the Ubuntu 26.04.1 release, because a point release like this is often the moment I tell friends to stop waiting and actually upgrade. I opened a terminal, ran the check, and the message came back: "New release '26.04 LTS' available."
That one line tells you two things. Ubuntu 26.04.1 exists, and the 24.04 to 26.04 upgrade path is now open. In this post I'll explain what's new in Ubuntu 26.04.1, what might break, and how to upgrade from Ubuntu 24.04 to 26.04.1 without turning your machine into a science project.
Why 26.04.1 Matters
Ubuntu 26.04 LTS, code-named Resolute Raccoon, came out on April 23, 2026. It gets standard support until April 2031, or up to 10 years if you use the free Ubuntu Pro personal subscription. The 26.04.1 point release arrived today, August 27, 2026. That gap between .0 and .1 exists for a reason.
A point release takes the original 26.04 system plus all the security fixes, driver updates, and bug patches from the first few months and bundles them into a fresh install image. Think of 26.04 as a new house and 26.04.1 as the same house after the first big cleanup. New rooms were not added. The loose doorknob got tightened.
For people who are still on 24.04, .1 is usually the signal to move. Canonical officially opens the LTS-to-LTS upgrade path around the first point release. That means you can go from 24.04 straight to 26.04 without stepping through 25.10 first. The upgrader will say "26.04 LTS," but the actual packages you receive are the latest point release content, so you end up on 26.04.1.
What's New in Ubuntu 26.04.1
Strictly speaking, 26.04.1 adds no new features on top of 26.04. It is the same Resolute Raccoon with post-release fixes baked in. But if you are coming from 24.04, these are the changes that jump out.
- Linux kernel 7.0 — better support for newer Intel and AMD hardware. If your laptop or desktop was not made in the last couple of years, you may not notice a difference. If it was, it should run more smoothly.
- GNOME 50 desktop with Wayland only — the old X11 session is gone. Most older apps still work through a compatibility layer called XWayland, but a few old tools may act up.
- sudo-rs replaces classic sudo — you get a small quality-of-life change: password characters show as asterisks instead of looking like nothing is being typed.
- OpenSSH 10.2 with post-quantum key exchange — SSH connections now use ML-KEM by default. For beginners, this means your remote sessions are ready for future quantum-computer attacks.
- Python 3.14 — the system Python interpreter is newer, which helps if you write small scripts or run Python apps.
- chrony as the default time sync tool — timekeeping changes from systemd's method to chrony. You likely won't notice unless you manage servers.
- New default apps — Showtime for video, Resources for system monitoring, and Ptyxis as the terminal. These replace older defaults and look more modern.
None of these are wild changes, but together they make 26.04 feel more current than 24.04.
What Changed That Could Affect You
Before you jump in, pay attention to a few breaking changes. These are the ones that can surprise someone who has been on 24.04 for two years.
| Change | 24.04 behavior | 26.04.1 behavior | What it means |
|---|---|---|---|
| X11 session | You could pick Xorg at the login screen | Only Wayland is available | Most apps still run via XWayland, but some old utilities may break |
| cgroup v2 | Some containers and old configs could use cgroup v1 | cgroup v2 is mandatory | Systems stuck on cgroup v1 cannot upgrade cleanly |
| /tmp storage | Files in /tmp were written to disk | /tmp is now a memory-backed tmpfs | Large temporary files eat RAM and disappear on reboot |
| Removable media mount points | Drives mounted under /media/username in some setups | Mount points changed | Old scripts that hard-code the path may need updating |
The /tmp change is the easiest to understand: if you copy a 10 GB video into /tmp, that 10 GB now sits in RAM, not on your hard drive. Reboot and it's gone. That can be useful for small temporary files, but it can also confuse people who used /tmp as a scratch space for big projects.
The cgroup v2 requirement is bigger for people running older containers or specialized server setups. If your system still relies on cgroup v1, the upgrader may refuse to continue. Most normal desktop users will never hit this.
Is the Upgrade Ready for You Yet?
I ran the check on August 27, 2026, the morning the release landed, and the release path was open from day one. On release morning the full image set was still rolling out — the 26.04.1/ subdirectory on releases.ubuntu.com had not finished syncing yet, which is normal for release day. By September 1, 2026, the sync was complete: releases.ubuntu.com/26.04.1/ now serves both ubuntu-26.04.1-desktop-amd64.iso and ubuntu-26.04.1-live-server-amd64.iso. If you're reading this now, the wait is over — download the fresh ISO or run do-release-upgrade, and you're on 26.04.1.
Here is the real command I used and the output I saw:
# Refresh the package list so your system knows about the latest release files
sudo apt update
# Check which release the upgrader would offer you
sudo do-release-upgrade -c
The output showed:
Checking for a new Ubuntu release
New release '26.04 LTS' available.
Run 'do-release-upgrade' to upgrade to it.
I also confirmed my current system before doing anything else:
# Confirm your current Ubuntu version before planning an upgrade
lsb_release -a
The output looked like this:
Distributor ID: Ubuntu
Description: Ubuntu 24.04.1 LTS
Release: 24.04
Codename: noble
Notice that do-release-upgrade -c says "26.04 LTS" rather than "26.04.1." That's normal. The target is the 26.04 series, but the packages installed will be the latest point release content.
How to Upgrade
The direct path is 24.04 to 26.04. You do not need to go through 24.10, 25.04, or 25.10. Here is the short version:
# Back up your files first: copy anything you can't stand to lose to an external drive
# Only continue after the backup is complete
# Make sure your 24.04 system is fully up to date
sudo apt update && sudo apt full-upgrade
# Start the release upgrade; answer the prompts carefully
sudo do-release-upgrade
The upgrade tool will ask before making major changes. It is not a one-click instant process, but it is guided. For the full step-by-step walkthrough with screenshots and warnings, read the Ubuntu 26.04 upgrade guide.
What If It Says "No New Release Found"
If you run do-release-upgrade -c and see "No new release found," don't panic. There are three things to check.
First, update your package list and try again:
# Step 1: refresh package lists and try the check again
sudo apt update
sudo do-release-upgrade -c
The release files may not have been pulled down yet on your first attempt.
Second, wait for the mirror to sync. Release propagation is not instant. Some mirrors get the new point release hours or even days later. If you can see the 26.04.1 ISO on the main releases.ubuntu.com page but your local mirror still lacks it, give it a little time.
Third, check your network or firewall. Your machine needs to reach the Ubuntu update servers. If you have a firewall blocking outbound traffic on ports 80 and 443, or if your DNS is misconfigured, the upgrader can't see the new release. On a home network, this is rarely the problem, but it's worth checking on a server.
FAQ
Is Ubuntu 26.04.1 out yet?
Yes. Ubuntu 26.04.1 was released on August 27, 2026. If you do not see the ISO on a specific mirror yet, that's just sync lag. The release itself is official and the upgrade path from 24.04 is open.
When was Ubuntu 26.04.1 released?
Ubuntu 26.04.1 was released on August 27, 2026. That matches Canonical's published Launchpad milestone for the first point release of Ubuntu 26.04 LTS.
How do I upgrade from Ubuntu 24.04 to 26.04.1?
You use the built-in release upgrader. Open a terminal, run sudo apt update and sudo apt full-upgrade to prepare your system, then run sudo do-release-upgrade. The 24.04 to 26.04 path is a supported direct LTS upgrade, so you don't need any intermediate releases. This guide has the exact steps.
Will I lose my files when upgrading?
Normally no. The standard upgrade process keeps your home folder, installed apps, and personal files in place. But upgrades are not a backup strategy. A power failure, a full disk, or an unexpected package conflict can still cause data loss. Copy anything important to an external drive before you start, then run the upgrade.
Does Ubuntu 26.04.1 fix the early 26.04 bugs?
Yes, in effect. The point release gathers all security updates and bug fixes from the first few months of 26.04 and puts them into the install image and upgrade path. If you already installed 26.04 and kept it updated, you already have those fixes. If you're coming from 24.04, you get them all at once.
Next Steps
- Read the full Ubuntu 26.04 upgrade guide before you start.
- If something breaks after the reboot, use the Ubuntu 26.04 troubleshooting guide.
- Prefer a clean install? Follow the step-by-step Ubuntu 26.04 install instructions.
- New to the command line? Get comfortable with the 10 basic terminal commands first. All code in this article was tested and runs successfully on a live Ubuntu 24.04.1 LTS server: sudo apt update, do-release-upgrade -c (reported "New release '26.04 LTS' available. Run 'do-release-upgrade' to upgrade to it."), and lsb_release -a all executed as shown on 2026-08-27. The full upgrade itself (sudo apt full-upgrade and sudo do-release-upgrade) was not run on the test server. Release status verified on 2026-08-27: the 26.04.1 point release shipped per Canonical's Launchpad milestone (August 27, 2026). Mirror sync re-verified on 2026-09-01: releases.ubuntu.com/26.04.1/ returns HTTP 200 and serves ubuntu-26.04.1-desktop-amd64.iso and ubuntu-26.04.1-live-server-amd64.iso. — verified August 2026, re-verified September 2026.