System Details: Upgrade system: Ubuntu 18.04.04 - 19.10 - 20.04
I am not able to bring up snap-store and when I am trying to fire from terminal, it shows following error on the same.
:~$ snap-store
cannot perform operation: mount --rbind /dev /tmp/snap.rootfs_8k8wWU//dev: No such file or directory
Can someone throw light on this issue?
Ps: Does 20.04 upgrade is buggy?
sudo snap remove snap-store
. Then in ~/snap delete the snap-store folder if there. Then install the beta version, it may work ok..sudo snap install snap-store --beta
See here, comments 114,115 https://discourse.ubuntu.com/t/is-ubuntu-software-going-to-be-remove-for-snap-snap-store/14542/115 – doug Apr 27 '20 at 05:43snap-store removed r:~$ sudo rm -r ~/snap/ r:~$ sudo snap install snap-store --beta snap-store (beta) 3.36.0-75-g02a9109 from Canonical✓ installed
:~$ snap-store cannot perform operation: mount --rbind /dev /tmp/snap.rootfs_GvnWs9//dev: No such file or directory
– Sudhir Apr 27 '20 at 06:00sudo snap refresh snap-store --channel=latest/stable/ubuntu-20.04
, the command for a fresh install of snap-store is the same, just replace refresh with install. At some future point they''ll update latestest/stable to this version so above command isn't needed. – doug Apr 27 '20 at 17:47