grdesktop command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
grdesktop: command not found
or when using sudo you get the following error message
sudo: grdesktop: command not found
Solutions to grdesktop: command not found
How To Fix grdesktop: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu grdesktop is provided by grdesktop package.
grdesktop is:
grdesktop is a GNOME frontend for the remote desktop client (rdesktop).
It can save several connections (including their options), and browse the network for available terminal servers.
To fix this problem, we can install more using the command below.
sudo apt-get -y install grdesktop
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install grdesktop.
sudo apt -y install grdesktop
Or if you have aptitude installed you can use the following command.
sudo aptitude install grdesktop
Summary
In this tutorial we learn how to fix grdesktop command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.