How To Install libnet-vnc-perl on Kali Linux
Introduction
In this tutorial we learn how to install libnet-vnc-perl on Kali Linux.
What is libnet-vnc-perl
libnet-vnc-perl is:
Virtual Network Computing (VNC) is a desktop sharing system which uses the RFB (Remote FrameBuffer) protocol to remotely control another computer. Net::VNC acts as a VNC client and communicates to a VNC server using the RFB protocol, allowing you to capture the screen of the remote computer.
This module dies upon connection errors (with a timeout of 15 seconds) and protocol errors.
This implementation is based largely on the RFB Protocol Specification, http://www.realvnc.com/docs/rfbproto.pdf. That document has an error in the DES encryption description, which is clarified via http://www.vidarholen.net/contents/junk/vnc.html.
There are three methods to install libnet-vnc-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 libnet-vnc-perl Using apt-get
Update apt database with apt-get using the following command.
sudo apt-get updateAfter updating apt database, We can install libnet-vnc-perl using apt-get by running the following command:
sudo apt-get -y install libnet-vnc-perlInstall libnet-vnc-perl Using apt
Update apt database with apt using the following command.
sudo apt updateAfter updating apt database, We can install libnet-vnc-perl using apt by running the following command:
sudo apt -y install libnet-vnc-perlInstall libnet-vnc-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 updateAfter updating apt database, We can install libnet-vnc-perl using aptitude by running the following command:
sudo aptitude -y install libnet-vnc-perlHow To Uninstall libnet-vnc-perl on Kali Linux
To uninstall only the libnet-vnc-perl package we can use the following command:
sudo apt-get remove libnet-vnc-perlUninstall libnet-vnc-perl And Its Dependencies
To uninstall libnet-vnc-perl and its dependencies that are no longer needed by Kali Linux, we can use the command below:
sudo apt-get -y autoremove libnet-vnc-perlRemove libnet-vnc-perl Configurations and Data
To remove libnet-vnc-perl configuration and data from Kali Linux we can use the following command:
sudo apt-get -y purge libnet-vnc-perlRemove libnet-vnc-perl configuration, data, and all of its dependencies
We can use the following command to remove libnet-vnc-perl configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge libnet-vnc-perlDependencies
libnet-vnc-perl have the following dependencies:
References
Summary
In this tutorial we learn how to install libnet-vnc-perl package on Kali Linux using different package management tools: apt, apt-get and aptitude.