Go to file
2015-12-29 20:01:03 +01:00
patch included curl with support for patch 2015-09-22 10:55:54 +02:00
src intercept curl exceptions 2015-12-29 19:38:15 +01:00
.gitignore .gitignore 2015-09-22 14:48:46 +02:00
LICENSE added readme and license 2015-09-22 18:31:10 +02:00
Makefile capability to run as service 2015-11-29 21:12:44 +01:00
onedrive.conf changed how config files works 2015-09-22 14:48:18 +02:00
onedrive.service capability to run as service 2015-11-29 21:12:44 +01:00
README.md instruction on how to run the service 2015-12-29 20:01:03 +01:00

OneDrive Free Client

Features:

  • State caching
  • Real-Time file monitoring with Inotify
  • Resumable uploads

What's missing:

  • OneDrive for business is not supported
  • While local changes are uploaded right away, remote changes are delayed.
  • No GUI

Dependencies

Installation

  1. make
  2. sudo make install

Configuration:

You should copy the default config file into your home directory before making changes:

mkdir -p ~/.config/onedrive
cp /usr/local/etc/onedrive.conf ~/.config/onedrive/config`

Available options:

  • client_id & client_secret: application identifiers necessary during the authentication
  • sync_dir: directory where the files will be synced
  • skip_file: any files that match this pattern will be skipped during sync
  • skip_dir: any directories that match this pattern will be skipped during sync

Pattern are case insensitive. * and ? wildcards characters are supported. Use | to separate multiple patterns.

First run

The first time you run the program you will be asked to sign in. The procedure require a web browser.

Service

If you want to sync your files automatically, enable and start the systemd service:

systemctl --user enable onedrive
systemctl --user start onedrive

To see the logs run:

journalctl --user-unit onedrive -f

Usage:

onedrive [OPTION]...

no option    Sync and exit.
-m --monitor Keep monitoring for local and remote changes.
	--resync Forget the last saved state, perform a full sync.
-v --verbose Print more details, useful for debugging.
-h    --help This help information.

Notes:

  • After changing the filters (skip_file or skip_dir in your configs) you must execute onedrive --resync
  • Windows naming conventions apply
  • Use make debug to generate an executable for debugging