How To Install etoys-doc on Kali Linux
Introduction
In this tutorial we learn how to install etoys-doc
on Kali Linux.
What is etoys-doc
etoys-doc is:
Squeak Etoys was inspired by LOGO, PARC-Smalltalk, Hypercard, and starLOGO. It is a media-rich authoring environment with a simple powerful scripted object model for many kinds of objects created by end-users that runs on many platforms, and is free and open source. It includes 2D and 3D graphics, images, text, particles, presentations, web-pages, videos, sound and MIDI, etc. It includes the ability to share desktops with other Etoy users in real-time, so many forms of immersive mentoring and play can be done over the Internet.
These are the help files for Etoys and several examples of projects.
There are three methods to install etoys-doc
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 etoys-doc Using apt-get
Update apt database with apt-get
using the following command.
sudo apt-get update
After updating apt database, We can install etoys-doc
using apt-get
by running the following command:
sudo apt-get -y install etoys-doc
Install etoys-doc Using apt
Update apt database with apt
using the following command.
sudo apt update
After updating apt database, We can install etoys-doc
using apt
by running the following command:
sudo apt -y install etoys-doc
Install etoys-doc 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 etoys-doc
using aptitude
by running the following command:
sudo aptitude -y install etoys-doc
How To Uninstall etoys-doc on Kali Linux
To uninstall only the etoys-doc
package we can use the following command:
sudo apt-get remove etoys-doc
Uninstall etoys-doc And Its Dependencies
To uninstall etoys-doc
and its dependencies that are no longer needed by Kali Linux, we can use the command below:
sudo apt-get -y autoremove etoys-doc
Remove etoys-doc Configurations and Data
To remove etoys-doc
configuration and data from Kali Linux we can use the following command:
sudo apt-get -y purge etoys-doc
Remove etoys-doc configuration, data, and all of its dependencies
We can use the following command to remove etoys-doc
configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge etoys-doc
Dependencies
etoys-doc have the following dependencies:
References
Summary
In this tutorial we learn how to install etoys-doc
package on Kali Linux using different package management tools: apt
, apt-get
and aptitude
.