gbase command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
gbase: command not found
or when using sudo you get the following error message
sudo: gbase: command not found
Solutions to gbase: command not found
How To Fix gbase: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu gbase is provided by gbase package.
gbase is:
This simple program converts numbers between bases 2 (binary), 8 (octal), 10 (decimal) and 16 (hexadecimal). It can be used both from console or via a small GTK+-based X interface.
To fix this problem, we can install more using the command below.
sudo apt-get -y install gbase
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install gbase.
sudo apt -y install gbase
Or if you have aptitude installed you can use the following command.
sudo aptitude install gbase
Summary
In this tutorial we learn how to fix gbase command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.