Mount cloud disk (OneDrive,etc…) In Linux Using Rclone (&fuse)
Thanks to Rclone you can mount any kind of cloud disk !
Begin by installing rclone
curl https://rclone.org/install.sh | sudo bash
Add a new remote to Rclone
rclone config
...
detailed instructions HERE : https://rclone.org/docs/
Mount as a filesystem
rclone --vfs-cache-mode writes mount onedrive: ~/OneDrive --daemon --allow-other
--allow-other is optional
--daemon too
--vfs-cache-mode writes; this is recommended, more info here : https://rclone.org/commands/rclone_mount/#file-caching
Mount at startup
Add the line above in a crontab...