Ubuntu Update Manager Says Distro Not Supported
Your Ubuntu version reached end of life and can't get updates. The fix is upgrading or changing the software sources.
Your Ubuntu Version Reached End Of Life (Most Common)
You're seeing "Your distribution is not supported" in the update manager because your Ubuntu release is past its end-of-life date. This happens a lot with Ubuntu 20.04 or 22.04 if you didn't upgrade in time. After the EOL date, Canonical stops hosting updates on the regular servers. The update manager checks those servers, finds nothing, and gives you that error.
I've seen this on hundreds of machines. People think their system is broken. It's not. It's just old.
Here's the real fix: you have two choices. Upgrade to a supported version, or change your software sources to point to the old-releases.ubuntu.com archive. I'll walk through both.
Fix #1: Upgrade To A Supported Release
This is the best long-term fix. But only works if you're one version behind. For example, from 22.04 to 24.04. If you're on 20.04 and it's 2025, you might need to do two upgrades.
- Open a terminal (Ctrl+Alt+T).
- Run this command to update the package list:
After running it, you should see lines ending with "... 404 Not Found" or "... Failed to fetch". That confirms the old repos are gone.sudo apt update - Now upgrade all current packages (even if some fail):
Expect some errors. Ignore them for now.sudo apt upgrade -y - Then run the release upgrade tool:
You'll see a prompt asking if you want to continue. Type Y and press Enter.sudo do-release-upgrade - The upgrade takes 20-40 minutes depending on your internet and CPU. Let it finish. Don't close the terminal.
After it finishes, reboot. Then run lsb_release -a to check the new version. Should show something like 24.04 or 24.10.
Important note: If you are more than two versions behind (like from 20.04 to 24.04), the do-release-upgrade command might fail. In that case, you need to upgrade step by step: 20.04 → 22.04 → 24.04. Or just do a fresh install. I prefer a fresh install when it's that far behind. Less headache.
Fix #2: Switch To old-releases.ubuntu.com
Use this if you can't upgrade right now, or if you need this machine for a specific old tool. This keeps your current version but still lets you install security patches from the archive.
- Back up your current sources list first:
This saves the original file. You can restore it later if something goes wrong.sudo cp /etc/apt/sources.list /etc/apt/sources.list.backup - Open the sources file with a text editor:
You'll see lines that look like:sudo nano /etc/apt/sources.list
deb http://archive.ubuntu.com/ubuntu focal main restricted - Replace archive.ubuntu.com with old-releases.ubuntu.com in every line. For example, change:
deb http://archive.ubuntu.com/ubuntu focal main restricted
to:
deb http://old-releases.ubuntu.com/ubuntu focal main restricted - Do the same for security.ubuntu.com lines. Replace them with old-releases.ubuntu.com as well.
- Save the file (in nano: Ctrl+O, Enter, then Ctrl+X).
- Now run:
After this, you should see updates downloading without the "not supported" error.sudo apt update
After that, your update manager should work again. But remember: you're getting old patches, not new features. You'll eventually hit a wall where some packages can't install because they need a newer library.
Third Party Repositories Disabled (Second Common Cause)
Sometimes the error shows up because the update manager checks third-party repositories like PPAs or Docker repos that don't support your old version. The main Ubuntu repos might be fine, but a PPA for an old version throws a 404 and the update manager panics.
Here's how to find and fix that:
- List all your third-party repos:
You'll see files likels /etc/apt/sources.list.d/graphics-drivers-ubuntu-ppa-focal.list. - Check each one. Open a file:
Look for the focal part (or whatever your release codename is). If it's an old version and the PPA is gone, that file is the problem.sudo nano /etc/apt/sources.list.d/graphics-drivers-ubuntu-ppa-focal.list - You have two options:
- Comment out the line by putting a
#at the start of each line in that file. Then save. - Delete the file:
sudo rm /etc/apt/sources.list.d/graphics-drivers-ubuntu-ppa-focal.list
- Comment out the line by putting a
- After that, run:
The error should be gone.sudo apt update
I usually delete the file. If you ever need that PPA again, you can re-add it. It's cleaner.
Corrupted Package Cache (Third Common Cause)
Less common, but happens when apt's cache gets corrupted after a failed update. The update manager reads a broken cache and thinks your distribution is unsupported.
Here's the fix:
- Clean the apt cache:
This deletes all downloaded package files. Don't worry, they'll download again when needed.sudo apt clean - Fix any broken packages:
If there are broken dependencies, it will try to fix them. You'll see messages like "Unpacking ..." or "Setting up ...".sudo apt --fix-broken install - Update again:
Now you should see a clean run without the error.sudo apt update
If the error persists after this, you probably have a genuine EOL issue. Go back to Fix #1 or Fix #2.
Quick-Reference Summary Table
| Cause | Symptom | Fix |
|---|---|---|
| Ubuntu EOL | Main repos return 404 | Upgrade release OR switch to old-releases |
| Third-party PPA broken | Error mentions a PPA domain | Comment out or delete the PPA file |
| Corrupted apt cache | Error after failed update | sudo apt clean && sudo apt --fix-broken install |
That's it. You should be able to use the update manager again. If none of these work, your system might have deeper issues. In that case, back up your files and do a fresh Ubuntu install. Sometimes starting clean is faster than hunting ghosts.
Was this solution helpful?