How to update snap-store .
I don't have Ubuntu advantage subscription.
Go to terminal and kill the snap-store process before installing/refreshing snap-store.
Find process with ps aux | grep snap
Find for the snap-store process, which looks like this
... <process id> ... ... /snap/snap-store/???/usr/bin/snap-store.
Kill process using the above found process id:
kill <process id>
Install/refresh snap-store:
Close "Ubuntu software" gnome app if it open.
Refresh snap-store:
sudo snap refresh snap-store
Had the same problem and fixed it this way.
sudo pkill snap-store && sudo snap refresh snap-store (copied from askubuntu.com/a/1411573/822591) works on Ubuntu 22.10.
– Petr Vepřek
Nov 30 '22 at 07:17
snap-store --quit before using any kill variant. Kill commands should be reserved for situations with no alternative, as they can damage a running process.
– Mutos
Mar 06 '24 at 12:02
I had same issue.
$ killall snap-store
$ snap refresh
worked for me.
If this still doesn't work, it means that your snap-store isn't a fresh install. You already have snap desktop integration running on your machine. Stop the running process manually by using: $ ps -ef | grep snap (it gets you the running process id) $ sudo kill 1997 (replace your process id here)
let me know, if it works :-) your feedback helps us improve the answers.
Other possible way:
Check the process, and note the id:
ps auxww | grep snap-store
Quit snap-store:
snap-store --quit
Check if the process is stopped
ps auxww | grep snap-store
If so, refresh snap-store:
sudo snap refresh snap-store
snap-store --quit instead of randomly killing PIDs
See also: https://askubuntu.com/a/1412580/25344
– Greg Sep 12 '22 at 06:02I have Ubuntu 20.04 and this worked perfect for me.
Just run this command:
sudo snap refresh snap-store
It will show the information about running snap apps
error: cannot refresh "snap-store": snap "snap-store" has running apps
(ubuntu-software), pids: 2247
Then kill them. and run again same command:
kill 2247
sudo snap refresh snap-store
replace 2247 with whatever you see after pids:
Run Ubuntu Update (Left Icon bar or Applications ....).
If it updates, wait and then see settings. Go to and configure Live Patch.
If it is not updating, you will see settings right away and configure Live Patch
..
If already updating, you should see that Live Patch is configured (likely) and nothing left to do.
If not running you will need to enable it which probably means signing in (it did mean that for me)
Updates will update Snap (Updates Tab) automatically.