2

There is no official OneDrive client for Linux. I figured that the easiest way to connect to OneDrive is mapping it by Webdav. In Windows, I can do that by click, drag-n-drop, etc :) See http://www.laptopmag.com/articles/map-onedrive-network-drive

How I can do the same in Nautilus/other way?

Sokołow
  • 131

1 Answers1

1

After a very long time, I decided to connect via "onedrive-d", not WebDAV :(

Step by step solution:

test@test:~$ git clone https://github.com/xybu92/onedrive-d.git
test@test:~$ cd onedrive-d/
test@test:~$ sudo su
root@test:~/onedrive-d# ./install.sh
root@test:~/onedrive-d# onedrive-pref
root@test:~/onedrive-d# onedrive-d start

You can read help info by typing:

  • onedrive-pref --help
  • onedrive-d --help
  • And check README.md on "onedrive-d" Github page.

After that, in local path (/home/test/OneDrive), I have all files from OneDrive.

Sokołow
  • 131