How To Install libweasel-widgets-dojo-perl on Kali Linux
Introduction
In this tutorial we learn how to install libweasel-widgets-dojo-perl
on Kali Linux.
What is libweasel-widgets-dojo-perl
libweasel-widgets-dojo-perl is:
Weasel::Widgets::Dojo provides Weasel extensions for testing tag matchers and widgets in Dojo-based web apps. This includes a ‘button_expander’ which finds button tags or input tags of types submit, reset, button and image. As well as an ‘option_expander’ which finds options for dijit.form.Select, after the drop down has been invoked at least once. For widgets; it can be use dto extend the Weasel::Element and Weasel::Widgets::HTML::Select modules.
There are three methods to install libweasel-widgets-dojo-perl
on Kali Linux. We can use apt-get
, apt
and aptitude
. In the following sections we will describe each method. You can choose one of them.
Install libweasel-widgets-dojo-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 libweasel-widgets-dojo-perl
using apt-get
by running the following command:
sudo apt-get -y install libweasel-widgets-dojo-perl
Install libweasel-widgets-dojo-perl Using apt
Update apt database with apt
using the following command.
sudo apt update
After updating apt database, We can install libweasel-widgets-dojo-perl
using apt
by running the following command:
sudo apt -y install libweasel-widgets-dojo-perl
Install libweasel-widgets-dojo-perl Using aptitude
If you want to follow this method, you might need to install aptitude on Kali Linux first since aptitude is usually not installed by default on Kali Linux. Update apt database with aptitude
using the following command.
sudo aptitude update
After updating apt database, We can install libweasel-widgets-dojo-perl
using aptitude
by running the following command:
sudo aptitude -y install libweasel-widgets-dojo-perl
How To Uninstall libweasel-widgets-dojo-perl on Kali Linux
To uninstall only the libweasel-widgets-dojo-perl
package we can use the following command:
sudo apt-get remove libweasel-widgets-dojo-perl
Uninstall libweasel-widgets-dojo-perl And Its Dependencies
To uninstall libweasel-widgets-dojo-perl
and its dependencies that are no longer needed by Kali Linux, we can use the command below:
sudo apt-get -y autoremove libweasel-widgets-dojo-perl
Remove libweasel-widgets-dojo-perl Configurations and Data
To remove libweasel-widgets-dojo-perl
configuration and data from Kali Linux we can use the following command:
sudo apt-get -y purge libweasel-widgets-dojo-perl
Remove libweasel-widgets-dojo-perl configuration, data, and all of its dependencies
We can use the following command to remove libweasel-widgets-dojo-perl
configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge libweasel-widgets-dojo-perl
Dependencies
libweasel-widgets-dojo-perl have the following dependencies:
References
Summary
In this tutorial we learn how to install libweasel-widgets-dojo-perl
package on Kali Linux using different package management tools: apt
, apt-get
and aptitude
.