How To Install kildclient-doc on Kali Linux
Introduction
In this tutorial we learn how to install kildclient-doc
on Kali Linux.
What is kildclient-doc
kildclient-doc is:
KildClient is a MUD Client written with the GTK+ windowing toolkit. It supports many common features of other clients, such as triggers, gags, aliases, macros, timers, and much more. But its main feature is the built-in Perl interpreter. You can at any moment execute Perl statements and functions to do things much more powerful than simply sending text the mud. Perl statements can also be run, for example, as the action of a trigger, allowing you to do complex things. Some built-in functions of KildClient allow interaction with the world, such as sending commands to it.
KildClient’s ANSI support is extensive: it supports not only the common 16 colors, but also support underlined text (singly and doubly), text in italics, text striked through, reverse video and “hidden” text. It also supports vt100’s line-drawing characters, and xterm’s escape sequences for a 256-color mode. All these features make KildClient one of the clients with the most features for displaying the mud output.
Kildclient supports the MCCP (Mud Client Compression Protocol) protocol, versions 1 and 2, to reduce the necessary bandwidth.
KildClient allows connection through SOCKS4/5 and HTTP proxy servers.
KildClient supports the GMCP (also called ATCP2) and MSDP protocols for out-of-band communications between server and client.
This package contains the HTML manual for KildClient.
There are three methods to install kildclient-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 kildclient-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 kildclient-doc
using apt-get
by running the following command:
sudo apt-get -y install kildclient-doc
Install kildclient-doc Using apt
Update apt database with apt
using the following command.
sudo apt update
After updating apt database, We can install kildclient-doc
using apt
by running the following command:
sudo apt -y install kildclient-doc
Install kildclient-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 kildclient-doc
using aptitude
by running the following command:
sudo aptitude -y install kildclient-doc
How To Uninstall kildclient-doc on Kali Linux
To uninstall only the kildclient-doc
package we can use the following command:
sudo apt-get remove kildclient-doc
Uninstall kildclient-doc And Its Dependencies
To uninstall kildclient-doc
and its dependencies that are no longer needed by Kali Linux, we can use the command below:
sudo apt-get -y autoremove kildclient-doc
Remove kildclient-doc Configurations and Data
To remove kildclient-doc
configuration and data from Kali Linux we can use the following command:
sudo apt-get -y purge kildclient-doc
Remove kildclient-doc configuration, data, and all of its dependencies
We can use the following command to remove kildclient-doc
configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge kildclient-doc
Dependencies
kildclient-doc have the following dependencies:
References
Summary
In this tutorial we learn how to install kildclient-doc
package on Kali Linux using different package management tools: apt
, apt-get
and aptitude
.