cnee command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
cnee: command not found
or when using sudo you get the following error message
sudo: cnee: command not found
Solutions to cnee: command not found
How To Fix cnee: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu cnee is provided by cnee package.
cnee is:
GNU Xnee is a suite of programs that can record, replay and distribute user actions under the X11 environment. Think of it as a robot that can imitate the job you just did.
Xnee can be used to
- automate tests
- demonstrate programs
- distribute actions
- record and replay ‘macro’
- retype a file
This package contains the command-line flavor of Xnee.
To fix this problem, we can install more using the command below.
sudo apt-get -y install cnee
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install cnee.
sudo apt -y install cnee
Or if you have aptitude installed you can use the following command.
sudo aptitude install cnee
Summary
In this tutorial we learn how to fix cnee command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.