4

I need help with a big problem with Snap Package Manager on Debian Buster Crostini. Whenever I try to install Anbox with Snap package manager, it gives me the error:

error: system does not fully support snapd: cannot mount squashfs image using
   "squashfs": mount: /tmp/sanity-mountpoint-772933788: mount failed:
   Operation not permitted.

Can anyone help with this problem?

  • See: https://stackoverflow.com/questions/60859806/chromeos-error-system-does-not-fully-support-snapd-cannot-mount-squashfs-imag for the answer. – Ahi Tuna Aug 13 '20 at 18:40

1 Answers1

5

Try this command I found on Reddit:

sudo apt install libsquashfuse0 squashfuse fuse
Unheilig
  • 16,196
  • 193
  • 68
  • 98
  • Thank you, works well and solved this problem (for me). – Dave Nov 28 '20 at 17:01
  • I also had to load loop. "sudo modprobe loop" – Peter B Feb 25 '21 at 21:55
  • I had to add `deb http://ftp.debian.org/debian stable main contrib non-free` into my `/etc/apt/sources.list` and do `apt update`. My original repositories list didn't contain the `squashfuse` package. – kub1x Aug 26 '21 at 12:10