convbin command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
convbin: command not found
or when using sudo you get the following error message
sudo: convbin: command not found
Solutions to convbin: command not found
How To Fix convbin: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu convbin is provided by rtklib package.
rtklib is:
RTKLIB is an open source program package for standard and precise positioning with GNSS (Global Navigation Satellite System). RTKLIB consists of a portable program library and several APs (Application Programs) utilizing the library.
This package includes the CLI APs.
To fix this problem, we can install more using the command below.
sudo apt-get -y install rtklib
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install rtklib.
sudo apt -y install rtklib
Or if you have aptitude installed you can use the following command.
sudo aptitude install rtklib
Summary
In this tutorial we learn how to fix convbin command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.