stumpwm command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
stumpwm: command not found
or when using sudo you get the following error message
sudo: stumpwm: command not found
Solutions to stumpwm: command not found
How To Fix stumpwm: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu stumpwm is provided by stumpwm package.
stumpwm is:
StumpWM is a window manager written entirely in Common Lisp. It attempts to be highly customizable while relying entirely on the keyboard for input. You will not find buttons, icons, title bars, tool bars, or any of the other conventional GUI widgets.
These design decisions reflect the growing popularity of productive, customizable lisp based systems.
Please ensure that you install compatible implementations of CL and CLX. That means either install sbcl and cl-clx-sbcl or cmucl and cmucl-source or clisp-module-clx only.
The suggested package, slime, lets you control a running StumpWM session through Emacs.
If you need Xinerama support, you need the xdpyinfo utility from the x11-utils package.
To fix this problem, we can install more using the command below.
sudo apt-get -y install stumpwm
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install stumpwm.
sudo apt -y install stumpwm
Or if you have aptitude installed you can use the following command.
sudo aptitude install stumpwm
Summary
In this tutorial we learn how to fix stumpwm command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.