Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

ChromeOS: error: system does not fully support snapd: cannot mount squashfs image using "squashfs": mount:

I'm working with chromeos 80 and am using debian buster in crostini. I want to use the snap package manager. When I try:

~$sudo snap install hello-world
error: system does not fully support snapd: cannot mount squashfs image using "squashfs": mount:
   /tmp/sanity-mountpoint-962423259: mount failed: Operation not permitted.

How can I get this working?

like image 956
user1592380 Avatar asked Mar 26 '20 01:03

user1592380


5 Answers

Try this way to install SNAPD

sudo apt install libsquashfuse0 squashfuse fuse 
sudo apt install snapd

Now select package name:

sudo snap install gimp 
like image 120
kcreddy Avatar answered Nov 15 '22 23:11

kcreddy


Under CentOS 8 we have a file /etc/modprobe.d/CIS.conf with all unused file systems disabled. Removing the line: install squashfs /bin/true resolves the error

like image 3
BdK Avatar answered Nov 15 '22 23:11

BdK


Try: sudo modprobe loop

Here is a relevant forum post based on your error.

like image 1
Dane B Avatar answered Nov 15 '22 23:11

Dane B


Under Redhat7 we have a file /etc/modprobe.d/NCIRC.conf with all unused file systems disabled. Removing the line: install squashfs /bin/true resolves the error here as well

like image 1
Detlef Kleinfelder Avatar answered Nov 15 '22 22:11

Detlef Kleinfelder


On Centos or Fedora:

$ sudo dnf install squashfs-tools squashfuse

like image 1
Mike Eager Avatar answered Nov 15 '22 21:11

Mike Eager