How to Remove Snap from Ubuntu

snapsoftware-uninstall

How do I remove snap? apt pretends it's not there but I can still call commands with it.

Trying to rm it says "read only file system"

root@tunnel:/# apt remove snap
Reading package lists... Done
Building dependency tree
Reading state information... Done
Package 'snap' is not installed, so not removed
0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
root@tunnel:/# snap whoami
email: -

Best Answer

The package is not called snap, but instead is snapd.

You will want to do

sudo apt autoremove --purge snapd
Related Question