grml-debootstrap command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
grml-debootstrap: command not found
or when using sudo you get the following error message
sudo: grml-debootstrap: command not found
Solutions to grml-debootstrap: command not found
How To Fix grml-debootstrap: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu grml-debootstrap is provided by grml-debootstrap package.
grml-debootstrap is:
Provides a wrapper suite around debootstrap and cdebootstrap to ease installation of a pure Debian system.
Configuration can be done on the command line, in a dialog frontend or in /etc/debootstrap/config. You will get a pure Debian system installed on the specified device or directory, or directly into an image file suitable for Virtual Machine use.
To fix this problem, we can install more using the command below.
sudo apt-get -y install grml-debootstrap
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install grml-debootstrap.
sudo apt -y install grml-debootstrap
Or if you have aptitude installed you can use the following command.
sudo aptitude install grml-debootstrap
Summary
In this tutorial we learn how to fix grml-debootstrap command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.