str2str command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
str2str: command not found
or when using sudo you get the following error message
sudo: str2str: command not found
Solutions to str2str: command not found
How To Fix str2str: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu str2str 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 str2str command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.