Powered by Restream https://restream.io/
I'm testing a Onedrive opensource application from https://github.com/abraunegg. I will be streaming the installation, configuration and testing of the application on Pop_OS!
Abraunegg's Github repo:
https://github.com/abraunegg/onedrive
Steps for PopOS 20.04 (check the github repo documentation for other distros)
** install prereqs **
sudo apt install libcurl4-openssl-dev
sudo apt install libsqlite3-dev
curl -fsS https://dlang.org/install.sh | bash -s dmd
source ~/dlang/dmd-2.092.0/activate
** clone and install onedrive app **
git clone https://github.com/abraunegg/onedrive...
cd onedrive
./configure --enable-notifications
make clean; make;
sudo make install
deactivate to get out of the dlang virtual environment
** configure the onedrive app **
in the terminal type: onedrive
login with your credentials
copy the URL in the blank page and paste it into the terminal
check config: onedrive --display-config
test your config: onedrive --synchronize --verbose --dry-run
** uninstall **
from the onedrive folder: sudo make uninstall
*delete the application state
rm -rf ~/.config/onedrive
Check the github repo for more documentation