I used rclone to access my onedrive. Here were what I did:
Following the instruction on http://www.sussex.ac.uk/its/help/guide?id=246 to install rclone
Automatically mounting onedrive on system startup
$ nano $HOME/.config/rclone/autostart.sh
Add the following lines to the autostart.sh file
#!/bin/bash
# you may want to change the path /media/$USER/Share/OneDrive
if ! mountpoint -q /media/$USER/Share/OneDrive
then
/usr/bin/mkdir -p /media/$USER/Share/OneDrive
/usr/bin/rclone mount \
--allow-non-empty \
--config=$HOME/.config/rclone/rclone.conf \
--daemon \
--vfs-cache-mode writes \
OneDrive:/ /media/$USER/Share/OneDrive
fi
$ chmod u+x $HOME/.config/rclone/autostart.sh
$ nano $HOME/.config/autostart/rclone.desktop
Add the following lines to the file
[Desktop Entry]
Type=Application
Exec=$HOME/.config/rclone/autostart.sh


中文 
