xdo command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
xdo: command not found
or when using sudo you get the following error message
sudo: xdo: command not found
Solutions to xdo: command not found
How To Fix xdo: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu xdo is provided by xdo package.
xdo is:
xdo it’s useful to manipulate windows. Using it you will be able to do many things with your windows, like: close, kill, hide, show, raise, lower, move resize, activate and others, using the console on X window based systems.
To fix this problem, we can install more using the command below.
sudo apt-get -y install xdo
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install xdo.
sudo apt -y install xdo
Or if you have aptitude installed you can use the following command.
sudo aptitude install xdo
Summary
In this tutorial we learn how to fix xdo command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.