How To Install pd-iemnet on Kali Linux
Introduction
In this tutorial we learn how to install pd-iemnet on Kali Linux.
What is pd-iemnet
pd-iemnet is:
This is a re-implementation of the original pd-net library by Martin Peach, focussing on reliability and performance.
This library adds Pure Data objects that allow one to build a networking infrastructure within Pd on OSI-Layer 4 (transport layer). The objects use threads to allow for non-blocking network communication within an audio-realtime environment.
- [tcpreceive], [tcpsend]: unidirectional communication over TCP/IP
- [tcpserver], [tcpclient]: bidirectional communication over TCP/IP
- [udpreceive], [udpsend]: unidirectional communication over UDP
- [udpclient]: bidirectional communication over UDP
Since these objects only send/receive lists of bytes, you will most likely need to add some glue to implement higher-level protocols (and transmit meaningful data).
There are three methods to install pd-iemnet 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 pd-iemnet Using apt-get
Update apt database with apt-get using the following command.
sudo apt-get updateAfter updating apt database, We can install pd-iemnet using apt-get by running the following command:
sudo apt-get -y install pd-iemnetInstall pd-iemnet Using apt
Update apt database with apt using the following command.
sudo apt updateAfter updating apt database, We can install pd-iemnet using apt by running the following command:
sudo apt -y install pd-iemnetInstall pd-iemnet 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 pd-iemnet using aptitude by running the following command:
sudo aptitude -y install pd-iemnetHow To Uninstall pd-iemnet on Kali Linux
To uninstall only the pd-iemnet package we can use the following command:
sudo apt-get remove pd-iemnetUninstall pd-iemnet And Its Dependencies
To uninstall pd-iemnet and its dependencies that are no longer needed by Kali Linux, we can use the command below:
sudo apt-get -y autoremove pd-iemnetRemove pd-iemnet Configurations and Data
To remove pd-iemnet configuration and data from Kali Linux we can use the following command:
sudo apt-get -y purge pd-iemnetRemove pd-iemnet configuration, data, and all of its dependencies
We can use the following command to remove pd-iemnet configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge pd-iemnetDependencies
pd-iemnet have the following dependencies:
References
Summary
In this tutorial we learn how to install pd-iemnet package on Kali Linux using different package management tools: apt, apt-get and aptitude.