You installed Ubuntu 26.04 LTS (if not, the step-by-step install guide covers it). It's shiny and new — and then something breaks. The App Center won't open. The Wi-Fi died after an update. The upgrade got stuck at 62%.

Every fresh LTS has a teething phase, and most problems have fixes measured in minutes, not hours. This guide collects the ones 26.04 users actually hit — starting with the most-reported: the App Center.

App Center Not Working

The App Center in 26.04 is a snap application called snap-store. Like any app, it can crash, hang, or fail to load its catalog. The fixes below go from gentle to nuclear — stop at the first one that works.

Fix 1: The Quick Refresh (fixes most "stuck loading" issues)

Close the App Center completely, then refresh it from the terminal:

killall snap-store
sudo snap refresh snap-store

The killall matters: if the store is still running, snap refuses to refresh it. This has fixed the widely-reported "Manage tab spins forever" issue on 26.04 — the fix ships through snap updates, and the refresh pulls it in. (Ubuntu community thread)

Fix 2: Window Opens and Instantly Closes

A flash-open-flash-closed window usually means a display session conflict (an X11/Flutter rendering issue). Two steps:

First, run the store from the terminal to see the real error:

snap run snap-store

If the output mentions XCB or Flutter engine errors, check which session you're in:

echo $XDG_SESSION_TYPE

If it prints x11, log out, click the gear icon on the login screen, select Ubuntu on Wayland, and log back in. If an update broke it, roll the store back to the previous version instead:

sudo snap revert snap-store

Fix 3: Installs Spin Forever

If an install hangs on "Downloading" or "Waiting for other manager", check the snap daemon:

sudo systemctl status snapd

Look for active (running). If it's not, restart it:

sudo systemctl stop snapd && sudo systemctl start snapd

Then watch the log while you retry the install, to see what's actually failing:

journalctl -u snapd -f

And if a change is stuck mid-flight, find and abort it:

snap changes            # note the ID of the stuck change
sudo snap abort <ID>    # e.g. sudo snap abort 42

Fix 4: The Nuclear Option (reinstall + cache clear)

If nothing above works, remove and reinstall the store — it's a snap, so apt remove won't do it:

sudo snap remove snap-store
sudo snap install snap-store

If the UI loads but shows no apps, corrupted caches are the usual suspect:

rm -rf ~/.cache/snap-store

Then log out and back in.

Fallback: GNOME Software

If the App Center keeps misbehaving, you don't have to live without a store — GNOME Software is the classic alternative and it's in the standard repositories:

sudo apt install gnome-software gnome-software-plugin-flatpak

".deb Files Won't Open" (or "No App Installed for .deb Files")

Another 26.04 surprise: double-clicking a .deb file downloaded from the internet (Chrome, Discord, VS Code) may do nothing. Install it from the terminal instead — note the ./ prefix, which tells apt "this is a local file":

sudo apt install ./package-name.deb

If apt reports broken dependencies, repair them:

sudo apt --fix-broken install

Prefer a graphical installer? GDebi does exactly this job with a double-click:

sudo apt install gdebi

Upgrade to 26.04 Stuck or Unavailable

Upgrading from Ubuntu 24.04 LTS to 26.04 LTS uses the release upgrader. For the full walkthrough — pre-upgrade checks, phasing, and when 26.04.1 arrives — see how to upgrade to Ubuntu 26.04 safely:

sudo do-release-upgrade

Three things trip people up here:

  1. "No new release found." Canonical only turns on LTS-to-LTS upgrade prompts after the first point release (26.04.1). As of writing (August 2026), 26.04.1 hasn't shipped yet — so either wait for it, or upgrade early with the developer flag:
sudo do-release-upgrade -d
  1. "Not enough free disk space." The upgrader needs several GB of headroom. Check:
df -h

If your root partition is nearly full, remove old snap revisions and package caches before retrying: sudo snap set system refresh.retain=2, then sudo apt clean.

  1. Upgrade hangs partway. Third-party repositories (PPAs) are the classic cause. Before upgrading, open Software & Updates → Other Software and untick everything that isn't Ubuntu. Re-run sudo do-release-upgrade after a reboot.

Wi-Fi Disappeared After an Update

Wi-Fi problems after an upgrade almost always mean one thing: the driver didn't survive. Plug in an Ethernet cable temporarily and let Ubuntu pick the right driver:

sudo apt update
sudo ubuntu-drivers autoinstall

Then reboot. If your laptop uses a Broadcom chip, install the dedicated driver:

sudo apt install bcmwl-kernel-source

The full explanation is in the "Common Problems" section of the install guide.

"Updates Won't Install" (But Nothing Is Broken)

You click update, it says "Not upgrading yet due to phasing", and nothing happens. That's not a bug — it's Ubuntu's phased rollout system: updates are released to 10%, then 20%, then 50% of users over a few days so problems get caught early. Your machine just hasn't been chosen yet. Wait a day or two and the update arrives on its own.

The Emergency Toolbox

Four commands solve a surprising fraction of "something is wrong" situations:

Command What it does When to use it
sudo dpkg --configure -a Finishes half-done package setups "dpkg was interrupted" errors, packages stuck in limbo
sudo apt --fix-broken install Repairs broken dependencies Install failed with dependency errors
journalctl -xe Shows the most recent system log with errors highlighted Anything — it usually names the culprit
df -h / free -h Disk space / RAM check Sudden slowdowns, failed installs

If you're not sure what a command does before running it, the terminal basics guide covers reading commands safely, and the cheat sheet keeps the essentials in one place.

When All Else Fails

Ubuntu has an unusually friendly community: describe your problem on Ubuntu Discourse or Ask Ubuntu and include the output of journalctl -xe — that single line of text turns a mystery into a diagnosable bug. Include your Ubuntu version (lsb_release -a) and what you tried already.

And remember the golden rule of Linux troubleshooting: one change at a time. Fix one thing, reboot, test, then move on. Shotgun-fixing three things at once just makes the next problem harder to diagnose.

All code in this article was tested and runs successfully on Ubuntu 24.04.1 LTS / 20.04 (snap 2.75, apt 2.0). Verified August 2026: every command's syntax and flags were checked by actual execution or simulation (snap refresh/revert/changes/abort, systemctl snapd, journalctl -u/-f, dpkg --configure, apt --fix-broken in simulation mode), the snap-store package name confirmed against Canonical's snap registry, and gdebi / gnome-software confirmed in the Ubuntu repositories. As of 2026-08-16 the 26.04.1 point release has not shipped — confirmed on releases.ubuntu.com. GUI-only steps (Wayland login switch, Software & Updates checkboxes) follow the official Ubuntu installer behavior and were not executable on a headless test machine.