zthread-config command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
zthread-config: command not found
or when using sudo you get the following error message
sudo: zthread-config: command not found
Solutions to zthread-config: command not found
How To Fix zthread-config: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu zthread-config is provided by libzthread-dev package.
libzthread-dev is:
Zthreads is an advanced platform-independent, object-oriented threading and synchronization library. Designed and tested under POSIX & Win32 systems.
It provides several structures for concurrent programming like PoolExecutor, MonitoredQueue, Barriers and much more. Furthermore, structures like Task and Thread are provided for creating threading applications in C++ easier.
This library wraps and interfaces with pthreads, so it is fully compliant.
This package provides the runtime library.
To fix this problem, we can install more using the command below.
sudo apt-get -y install libzthread-dev
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install libzthread-dev.
sudo apt -y install libzthread-dev
Or if you have aptitude installed you can use the following command.
sudo aptitude install libzthread-dev
Summary
In this tutorial we learn how to fix zthread-config command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.