dbginfo command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
dbginfo: command not found
or when using sudo you get the following error message
sudo: dbginfo: command not found
Solutions to dbginfo: command not found
How To Fix dbginfo: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu dbginfo is provided by gatb-core package.
gatb-core is:
The GATB-CORE project provides a set of highly efficient algorithms to analyse NGS data sets. These methods enable the analysis of data sets of any size on multi-core desktop computers, including very huge amount of reads data coming from any kind of organisms such as bacteria, plants, animals and even complex samples (e.g. metagenomes). Read more about GATB at https://gatb.inria.fr/. By itself GATB-CORE is not an NGS data analysis tool. However, it can be used to create such tools. There already exist a set of ready-to-use tools relying on GATB-CORE library: see https://gatb.inria.fr/software/
To fix this problem, we can install more using the command below.
sudo apt-get -y install gatb-core
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install gatb-core.
sudo apt -y install gatb-core
Or if you have aptitude installed you can use the following command.
sudo aptitude install gatb-core
Summary
In this tutorial we learn how to fix dbginfo command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.