How To Install zoom-player on Kali Linux
Introduction
In this tutorial we learn how to install zoom-player on Kali Linux.
What is zoom-player
zoom-player is:
Zoom is a player for Z-Code stories or games. These are usually text adventures (also known as interactive fiction), made popular in the eighties by Infocom with its Zork series of games, and others.
Zoom emulates versions 3 through 8 of the Z-Machine; in particular it supports version 6 games properly (including Arthur, Journey, Sh?gun and Zork Zero).
There are three methods to install zoom-player 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 zoom-player Using apt-get
Update apt database with apt-get using the following command.
sudo apt-get updateAfter updating apt database, We can install zoom-player using apt-get by running the following command:
sudo apt-get -y install zoom-playerInstall zoom-player Using apt
Update apt database with apt using the following command.
sudo apt updateAfter updating apt database, We can install zoom-player using apt by running the following command:
sudo apt -y install zoom-playerInstall zoom-player 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 zoom-player using aptitude by running the following command:
sudo aptitude -y install zoom-playerHow To Uninstall zoom-player on Kali Linux
To uninstall only the zoom-player package we can use the following command:
sudo apt-get remove zoom-playerUninstall zoom-player And Its Dependencies
To uninstall zoom-player and its dependencies that are no longer needed by Kali Linux, we can use the command below:
sudo apt-get -y autoremove zoom-playerRemove zoom-player Configurations and Data
To remove zoom-player configuration and data from Kali Linux we can use the following command:
sudo apt-get -y purge zoom-playerRemove zoom-player configuration, data, and all of its dependencies
We can use the following command to remove zoom-player configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge zoom-playerDependencies
zoom-player have the following dependencies:
References
Summary
In this tutorial we learn how to install zoom-player package on Kali Linux using different package management tools: apt, apt-get and aptitude.