Plex & OneDrive Setup Help

Mount Command:

rclone mount onedrive: /home/fitsou/onedrive --use-mmap --dir-cache-time 1000h --poll-interval=15s --vfs-cache-mode writes --tpslimit 10

Rclone config

[onedrive]
type = onedrive
token = {"access_token":"",
"token_type":"Bearer","
refresh_token":"","
expiry":"2022-01-22T21:20:34.168365957+02:00"}
drive_id =
drive_type = personal

The issue is that, while I can see the folders in the mount drive with "ls" command on my headless server, im unable to see the folder in plex.

I don't have the experience to diagnose the issue, can someone please spent some time to help me?

What I want is for plex to see my videos from OneDrive.

hello, might need to add

--allow-other                            Allow access to other users
1 Like

onedrive does not support polling, so can remove --poll-interval=15s

as per the rclone debug log.
"INFO : One drive root '': poll-interval is not supported by this remote"

1 Like

Thanks for taking the time to respond.

rclone mount onedrive: /home/fitsou/onedrive --use-mmap --dir-cache-time 1000h --vfs-cache-mode writes --tpslimit 10 --allow-other

i'm getting this error:

2022/01/22 21:46:42 mount helper error: fusermount: option allow_other only allo wed if 'user_allow_other' is set in /etc/fuse.conf
2022/01/22 21:46:42 Fatal error: failed to mount FUSE fs: fusermount: exit statu s 1

as the root user, edit /etc/fuse.conf
if there is a # in front of user_allow_other, then remove it

should look this

user_allow_other

but i don't have the Fuse installed to my system.
Maybe this is the reason??

well, not a linux expert but if the OS did not have fuse installed, i think you would get a different error.

the error you are getting is a common issue here in the forum,
that the first time using --allow-other and get error
"allow_other only allowed if 'user_allow_other' is set in /etc/fuse.conf"

so just make the change and test.

1 Like

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.