onedrive command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
onedrive: command not found
or when using sudo you get the following error message
sudo: onedrive: command not found
Solutions to onedrive: command not found
How To Fix onedrive: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu onedrive is provided by onedrive package.
onedrive is:
OneDrive is the cloud storage system of Microsoft. This package provides the command line client specialising in synchronizing with OneDrive cloud storage.
To fix this problem, we can install more using the command below.
sudo apt-get -y install onedrive
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install onedrive.
sudo apt -y install onedrive
Or if you have aptitude installed you can use the following command.
sudo aptitude install onedrive
Summary
In this tutorial we learn how to fix onedrive command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.