-
Notifications
You must be signed in to change notification settings - Fork 0
Troubleshooting
Arjun Jakkipally edited this page Jan 2, 2023
·
1 revision
If snap is not found, try installing it from its homepage
Sometimes an error like the following happens:
error: system does not fully support snapd: cannot mount squashfs image using "squashfs": mount:
/tmp/sanity-mountpoint-258522878: mount failed: Operation not permitted.
First, try rebooting the terminal. Next, try running this (for Debian):
sudo apt update
sudo apt install libsquashfuse0 squashfuse fuse
sudo apt install snapd
This install squashfuse, which fixes this most of the time.
Then try again installing like this:
sudo snap install hello-world
Some snaps require new snapd features and will show an error such as snap "lxd" assumes unsupported features" during install. You can solve this issue by making sure the core snap is installed (snap install core) and it’s the latest version (snap refresh core).
You can always go to a search engine for more info.
(c) 2022 Arjun J. All rights reserved.