secpanel command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
secpanel: command not found
or when using sudo you get the following error message
sudo: secpanel: command not found
Solutions to secpanel: command not found
How To Fix secpanel: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu secpanel is provided by secpanel package.
secpanel is:
SecPanel is a graphical user interface for managining and running secure shell (ssh) and secure network copy (scp) connections via OpenSSH. It eases key distribution and other tasks related to using these programs.
To fix this problem, we can install more using the command below.
sudo apt-get -y install secpanel
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install secpanel.
sudo apt -y install secpanel
Or if you have aptitude installed you can use the following command.
sudo aptitude install secpanel
Summary
In this tutorial we learn how to fix secpanel command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.