Your distribution is not supported

Ubuntu Update Manager Says Distro Not Supported

Linux & Unix Beginner 👁 6 views 📅 Jun 28, 2026

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.

  1. Open a terminal (Ctrl+Alt+T).
  2. Run this command to update the package list:
    sudo apt update
    After running it, you should see lines ending with "... 404 Not Found" or "... Failed to fetch". That confirms the old repos are gone.
  3. Now upgrade all current packages (even if some fail):
    sudo apt upgrade -y
    Expect some errors. Ignore them for now.
  4. Then run the release upgrade tool:
    sudo do-release-upgrade
    You'll see a prompt asking if you want to continue. Type Y and press Enter.
  5. 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.

  1. Back up your current sources list first:
    sudo cp /etc/apt/sources.list /etc/apt/sources.list.backup
    This saves the original file. You can restore it later if something goes wrong.
  2. Open the sources file with a text editor:
    sudo nano /etc/apt/sources.list
    You'll see lines that look like:
    deb http://archive.ubuntu.com/ubuntu focal main restricted
  3. 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
  4. Do the same for security.ubuntu.com lines. Replace them with old-releases.ubuntu.com as well.
  5. Save the file (in nano: Ctrl+O, Enter, then Ctrl+X).
  6. Now run:
    sudo apt update
    After this, you should see updates downloading without the "not supported" error.

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:

  1. List all your third-party repos:
    ls /etc/apt/sources.list.d/
    You'll see files like graphics-drivers-ubuntu-ppa-focal.list.
  2. Check each one. Open a file:
    sudo nano /etc/apt/sources.list.d/graphics-drivers-ubuntu-ppa-focal.list
    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.
  3. 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
  4. After that, run:
    sudo apt update
    The error should be gone.

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:

  1. Clean the apt cache:
    sudo apt clean
    This deletes all downloaded package files. Don't worry, they'll download again when needed.
  2. Fix any broken packages:
    sudo apt --fix-broken install
    If there are broken dependencies, it will try to fix them. You'll see messages like "Unpacking ..." or "Setting up ...".
  3. Update again:
    sudo apt update
    Now you should see a clean run without the error.

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?