gfxboot command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
gfxboot: command not found
or when using sudo you get the following error message
sudo: gfxboot: command not found
Solutions to gfxboot: command not found
How To Fix gfxboot: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu gfxboot is provided by gfxboot package.
gfxboot is:
gfxboot is a tool to test and create graphical boot logos for gfxboot compliant boot loaders. Currently, this includes grub, lilo, and syslinux (all payloads).
This package contains the runtime utility.
To fix this problem, we can install more using the command below.
sudo apt-get -y install gfxboot
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install gfxboot.
sudo apt -y install gfxboot
Or if you have aptitude installed you can use the following command.
sudo aptitude install gfxboot
Summary
In this tutorial we learn how to fix gfxboot command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.