How To Install jugglinglab on Kali Linux
Introduction
In this tutorial we learn how to install jugglinglab on Kali Linux.
What is jugglinglab
jugglinglab is:
Juggling Lab is an application written in Java for creating and animating juggling patterns.
Its main goals are to help people learn juggling patterns, and to assist in inventing new ones.
It generates and animates synchronous and asynchronous siteswaps and also multiplex siteswaps. Hand and body movement can be adjusted.
Part of the program is its siteswap generator, which allows one to generate siteswaps automatically by entering parameters like the number of objects, maximum height of throws and length of the pattern.
There are three methods to install jugglinglab 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 jugglinglab Using apt-get
Update apt database with apt-get using the following command.
sudo apt-get updateAfter updating apt database, We can install jugglinglab using apt-get by running the following command:
sudo apt-get -y install jugglinglabInstall jugglinglab Using apt
Update apt database with apt using the following command.
sudo apt updateAfter updating apt database, We can install jugglinglab using apt by running the following command:
sudo apt -y install jugglinglabInstall jugglinglab 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 updateAfter updating apt database, We can install jugglinglab using aptitude by running the following command:
sudo aptitude -y install jugglinglabHow To Uninstall jugglinglab on Kali Linux
To uninstall only the jugglinglab package we can use the following command:
sudo apt-get remove jugglinglabUninstall jugglinglab And Its Dependencies
To uninstall jugglinglab and its dependencies that are no longer needed by Kali Linux, we can use the command below:
sudo apt-get -y autoremove jugglinglabRemove jugglinglab Configurations and Data
To remove jugglinglab configuration and data from Kali Linux we can use the following command:
sudo apt-get -y purge jugglinglabRemove jugglinglab configuration, data, and all of its dependencies
We can use the following command to remove jugglinglab configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge jugglinglabDependencies
jugglinglab have the following dependencies:
References
Summary
In this tutorial we learn how to install jugglinglab package on Kali Linux using different package management tools: apt, apt-get and aptitude.