3

Following the instruction from certbot website.

https://snapcraft.io/docs/installing-snap-on-debian

I have got an error when i use this command

> sudo snap install core
error: system does not fully support snapd: cannot mount squashfs image using "squashfs": mount:
       /tmp/sanity-mountpoint-575285211: unknown filesystem type 'squashfs'.

My server running with this configuration

> lsb_release -a                                                                                                                               
No LSB modules are available.
Distributor ID: Debian
Description:    Debian GNU/Linux 10 (buster)
Release:        10
Codename:       buster

> uname -mr                                                                                                                                  
4.19.203-xxxx-std-ipv6-64 x86_64

Thanks a lot

Gary Houbre
  • 857
  • 8
  • 24

1 Answers1

1

This problem provide a module squashfs it's not include into kernel, to verify this :

grep squashfs /proc/filesystems

If the result is empty, then the module is probably not load.

To verify if the module exist in your kernel you need following this command :

modprobe squashfs

If you have got an error, then your kernel doesn't support 'squashfs' module.

Gary Houbre
  • 857
  • 8
  • 24