我无法在 Debian 服务器上安装我的 amazon s3 存储桶。据我所知,我已成功编译并安装了 s3fs,但当我运行 mount 命令时:
sudo s3fs my-bucket-name /mnt
我总是收到这个错误:
fuse: device not found, try 'modprobe fuse' first
我按照github上的说明进行编译和安装:
https://github.com/s3fs-fuse/s3fs-fuse/wiki/Installation-Notes
我还发现其他人说解决方案是安装 fuse-utils 或升级其内核。我安装了 fuse-utils,但并没有解决这个问题。我还执行了 apt-get upgrade 并
uname -r
打印结果为:
3.2.0-4-686-pae
我相信这是我的 Debian 7 服务器的最新内核
进一步运行:
modprobe fuse
我收到此错误:
-bash: modprobe: command not found
但是我发现 modprobe/sbin
我猜想 modprobe 存在权限问题???有人知道如何让 s3fs 工作,以便我可以挂载我的存储桶吗?
答案1
您需要以 root 身份运行 modprobe,例如使用 sudo。