群晖 Docker 安装 RcloneBrowser 挂载错误: "fusermount3": executable file not found in $PATH

166 天前
 unishare
docker 装的是这个,rclone 版本是 1.65
https://hub.docker.com/r/yadiman/rclonebrowser

按照这个教程 https://imnks.com/8208.html
建立为 fuse2 的软连接,还是不行
接着 opkg install fuse3-utils ,安装成功了,还是不行
请问下大家该怎么解决
1483 次点击
所在节点    NAS
26 条回复
unishare
166 天前
@NessajCN @georgex 我用命令行的方式挂载,这次用的这个 docker ,rclone/rclone:latest ,还是提示 fuse 的问题,😂

2023/12/19 04:31:01 mount helper error: fusermount3: fuse device not found, try 'modprobe fuse' first
2023/12/19 04:31:01 Fatal error: failed to mount FUSE fs: fusermount: exit status 1
/data #
unishare
166 天前
@NessajCN @georgex
我不是通过命令行安装的 docker rclone ,我看教程有这一行,但是在群晖的图形界面找不到这个配置 --device /dev/fuse \ 不知道错误跟这个有没关

docker run -d --name rclone-mount --restart=always \
--cap-add SYS_ADMIN \
--device /dev/fuse \
--security-opt apparmor:unconfined \
-e ConfigName="rclone.conf" \
-e RemotePath="alist:" \
-e MountCommands="--allow-other --allow-non-empty --read-only --dir-cache-time 2h --buffer-size 32M --poll-interval 5m --tpslimit 2" \
-v "/volume1/docker/rclone-mount":/config \
-v "/volume1/Rclone:/mnt/mediaefs:shared \
mumiehub/rclone-mount
georgex
166 天前
@unishare #22 肯定是要 /dev/fuse 的,你不用命令行的话你可以试试 compose 写

下面是我在用的

version: '3'
services:
rclone:
image: rclone/rclone
container_name: rclone
mem_limit: 2048m
network_mode: bridge
restart: unless-stopped
user: 1026:101
volumes:
- ./config:/config/rclone
- /etc/passwd:/etc/passwd:ro
- /etc/group:/etc/group:ro
- /volume3/rclone/cache:/cache
- /volume3/rclone/data:/data:shared
devices:
- /dev/fuse
cap_add:
- SYS_ADMIN
security_opt:
- apparmor:unconfined
command: mount alist:/ /data/alist --use-mmap --umask 000 --network-mode --no-check-certificate --allow-other --allow-non-empty --dir-cache-time 4h --cache-dir=/cache --header "Referer:" --vfs-cache-mode full --buffer-size 512M --vfs-read-chunk-size 64M --vfs-read-chunk-size-limit 1G --vfs-cache-max-size 10G --exclude "#recycle/**" --exclude "@eaDir/**" --exclude "@eaDir/" --exclude ".DS_Store"
unishare
166 天前
@georgex #23 好,我试试看
unishare
166 天前
@georgex #23

成功挂载了,十分感谢!!!
georgex
165 天前
@unishare 不客气

这是一个专为移动设备优化的页面(即为了让你能够在 Google 搜索结果里秒开这个页面),如果你希望参与 V2EX 社区的讨论,你可以继续到 V2EX 上打开本讨论主题的完整版本。

https://www.v2ex.com/t/1001444

V2EX 是创意工作者们的社区,是一个分享自己正在做的有趣事物、交流想法,可以遇见新朋友甚至新机会的地方。

V2EX is a community of developers, designers and creative people.

© 2021 V2EX