How To Install libconfig-model-tkui-perl on Debian 10
Introduction
In this tutorial we learn how to install libconfig-model-tkui-perl
on Debian 10.
What is libconfig-model-tkui-perl
libconfig-model-tkui-perl is:
Config::Model::TkUI provides a Perl/Tk interface to:
- the configuration editor provided by Config::Model (cme).
- the configuration model editor provided by Config::Model::Itself (config-model-edit)
For instance, with this package and libconfig-model-openssh-perl Config::Model::OpenSsh, you get a graphical configuration editor for /etc/ssh/sshd_config.
To get the graphical editor, just install Config::Model::TkUI, and the cme (provided by libconfig-model-perl) will automagically launch the graphical interface.
There are three methods to install libconfig-model-tkui-perl
on Debian 10. We can use apt-get
, apt
and aptitude
. In the following sections we will describe each method. You can choose one of them.
Install libconfig-model-tkui-perl Using apt-get
Update apt database with apt-get
using the following command.
sudo apt-get update
After updating apt database, We can install libconfig-model-tkui-perl
using apt-get
by running the following command:
sudo apt-get -y install libconfig-model-tkui-perl
Install libconfig-model-tkui-perl Using apt
Update apt database with apt
using the following command.
sudo apt update
After updating apt database, We can install libconfig-model-tkui-perl
using apt
by running the following command:
sudo apt -y install libconfig-model-tkui-perl
Install libconfig-model-tkui-perl Using aptitude
If you want to follow this method, you might need to install aptitude first since aptitude is usually not installed by default on Debian. Update apt database with aptitude
using the following command.
sudo aptitude update
After updating apt database, We can install libconfig-model-tkui-perl
using aptitude
by running the following command:
sudo aptitude -y install libconfig-model-tkui-perl
How To Uninstall libconfig-model-tkui-perl on Debian 10
To uninstall only the libconfig-model-tkui-perl
package we can use the following command:
sudo apt-get remove libconfig-model-tkui-perl
Uninstall libconfig-model-tkui-perl And Its Dependencies
To uninstall libconfig-model-tkui-perl
and its dependencies that are no longer needed by Debian 10, we can use the command below:
sudo apt-get -y autoremove libconfig-model-tkui-perl
Remove libconfig-model-tkui-perl Configurations and Data
To remove libconfig-model-tkui-perl
configuration and data from Debian 10 we can use the following command:
sudo apt-get -y purge libconfig-model-tkui-perl
Remove libconfig-model-tkui-perl configuration, data, and all of its dependencies
We can use the following command to remove libconfig-model-tkui-perl
configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge libconfig-model-tkui-perl
Dependencies
libconfig-model-tkui-perl have the following dependencies:
- perl
- libconfig-model-perl
- libfile-homedir-perl
- liblog-log4perl-perl
- libpath-tiny-perl
- libpod-pom-perl
- libtext-diff-perl
- libtk-dirselect-perl
- libtk-doubleclick-perl
- libtk-fontdialog-perl
- libtk-pod-perl
- libtry-tiny-perl
- libyaml-perl
- perl-tk
References
Summary
In this tutorial we learn how to install libconfig-model-tkui-perl
package on Debian 10 using different package management tools: apt
, apt-get
and aptitude
.