Ubuntu access onedrive with rclone
Easy access of onedrive with rclone on Ubuntu
// runs rclone from cli in the background
rclone –vfs-cache-mode full –vfs-cache-max-size 100G –vfs-cache-max-age 5000h –vfs-cache-poll-interval 5m –vfs-read-ahead 2G –bwlimit-file 32M –vfs-read-chunk-size=64M –vfs-read-chunk-size-limit=2048M mount –allow-non-empty onedrive: ~/onedrive &
// the script to load on login.
#!/bin/bash rclone –vfs-cache-mode full –vfs-cache-max-size 100G –vfs-cache-max-age 5000h –vfs-cache-poll-interval 5m –vfs-read-ahead 2G –bwlimit-file 32M –vfs-read-chunk-size=64M –vfs-read-chunk-size-limit=2048M mount –allow-non-empty onedrive: ~/onedrive