23

New software has been introduced on Ubuntu 23.10: a new Flutter-based App Center and a Firmware Updater tool, as can be read in Ubuntu Desktop 23.10: Mantic Minotaur deep dive.

However, after upgrading from Ubuntu 23.04 to 23.10, I can't find either of these tools.

How can I get them?

Zanna
  • 72,312
user105939
  • 1,795

1 Answers1

31

I see this as well. Follow the steps below to fix this for Ubuntu 23.10.

Note: The same commands also work for Ubuntu 24.04 (and most likely future versions). Just replace any reference of ubuntu-23.10 with ubuntu-24.04 (or the version you are using).

  1. Run the following commands:

    snap-store --quit
    sudo snap refresh snap-store --channel=latest/stable/ubuntu-23.10
    
  2. If despite the snap-store --quit this tells you that it cannot do so because it has running apps, something along the lines of:

    error: cannot refresh "snap-store": snap "snap-store" has running apps (ubuntu-software), pids:
           3071
    

    then run:

    kill -9 3071
    

    or whatever PID is being shown, then once more:

    sudo snap refresh snap-store --channel=latest/stable/ubuntu-23.10
    

    That brought the App Center in for me.

  3. On to firmware-updater. On my 23.04 → 23.10 it failed during do-release-upgrade. This was easily remedied by just running that install once more once 23.10/24.04 was installed and had rebooted:

    sudo snap install firmware-updater
    
  4. Lastly, if you're keen, you can:

    snap list --all
    

    and then run:

    sudo snap remove SNAP --revision=REVISION
    

    for each disabled snap.