这篇文章是为了Emby访问OD的内容做准备的。

Rclone绑定账户就不写了,基于Ubuntu系统,首先创建Service:

cd /lib/systemd/system
touch rclone.service
vi rclone.service

然后填入内容:

[Unit]
Description=rclone
[Service]
User=root
ExecStart=rclone mount od:/ /root/onedrive --vfs-cache-mode off --vfs-cache-max-size 100M --vfs-read-chunk-size-limit 100M --buffer-size 100M --copy-links --no-gzip-encoding --no-check-certificate --allow-other --allow-non-empty --umask 000
Restart=on-abort
[Install]
WantedBy=multi-user.target

并保存,然后启动就可以了:

systemctl enable rclone
systemctl start rclone
systemctl status rclone