如何在 LXC 容器中挂载 encfs

如何在 LXC 容器中挂载 encfs

尝试挂载时,出现以下错误:

container# encfs /toto /mnt
EncFS Password: 
fuse: device not found, try 'modprobe fuse' first
fuse failed.  Common problems:
 - fuse kernel module not installed (modprobe fuse)
 - invalid options -- see usage message

当我尝试 modprobe 时:

container# modprobe fuse
modprobe: ERROR: ../libkmod/libkmod.c:556 kmod_search_moddep() could not open moddep file '/lib/modules/3.13.0-86-generic/modules.dep.bin'

缺少了什么吗?

答案1

答案:mknod -m 666 /dev/fuse c 10 229

666 = 权限 c = 字符设备 10 = 主机中 /dev/fuse 的次要编号 229 = 主机中 /dev/fuse 的主要编号

谢谢 https://forum.proxmox.com/threads/kernel-module-fuse-for-lxc.24855/

相关内容