plymouth command not found

In this troubleshooting guide we learn how to fix plymouth command not found error message

Introduction

When you run more command in linux terminal / console, you get the following error message

plymouth: command not found

or when using sudo you get the following error message

sudo: plymouth: command not found

Solutions to plymouth: command not found

How To Fix plymouth: command not found in Ubuntu / Debian / Kali Linux / Raspbian

In Ubuntu plymouth is provided by plymouth package.

plymouth is:

Plymouth provides a boot-time I/O multiplexing framework - the most obvious use for which is to provide an attractive graphical animation in place of the text messages that normally get shown during boot. (The messages are instead redirected to a logfile for later viewing.) However, in event-driven boot systems Plymouth can also usefully handle user interaction such as password prompts for encrypted file systems.

This package provides the basic framework, enabling a text-mode animation.

To fix this problem, we can install more using the command below.

sudo apt-get -y install plymouth

This command might take some time to finish depending on your machine internet connection.

You can also use apt command to install plymouth.

sudo apt -y install plymouth

Or if you have aptitude installed you can use the following command.

sudo aptitude install plymouth

Summary

In this tutorial we learn how to fix plymouth command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.