尝试挂载时,出现以下错误:
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'
有什么遗漏吗?
答案:mknod -m 666 /dev/fuse c 10 229
666 = perms c = 字符设备 10 = 主机中 /dev/fuse 的次要编号 229 = 主机中 /dev/fuse 的主要编号
感谢 https://forum.proxmox.com/threads/kernel-module-fuse-for-lxc.24855/