actexec command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
actexec: command not found
or when using sudo you get the following error message
sudo: actexec: command not found
Solutions to actexec: command not found
How To Fix actexec: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu actexec is provided by actiona package.
actiona is:
Actiona is an application that allows you to execute many actions on your computer such as emulating mouse clicks, key presses, showing message boxes, editing text files, etc. Tasks can be created using a simple editor or using the EcmaScript (JavaScript) programming language for more customization. Actiona is cross-platform.
To fix this problem, we can install more using the command below.
sudo apt-get -y install actiona
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install actiona.
sudo apt -y install actiona
Or if you have aptitude installed you can use the following command.
sudo aptitude install actiona
Summary
In this tutorial we learn how to fix actexec command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.