How To Install netpipe-pvm on Debian 10
Introduction
In this tutorial we learn how to install netpipe-pvm
on Debian 10.
What is netpipe-pvm
netpipe-pvm is:
NetPIPE is a protocol independent performance tool that encapsulates the best of ttcp and netperf and visually represents the network performance under a variety of conditions. By taking the end-to-end application view of a network, NetPIPE clearly shows the overhead associated with different protocol layers. NetPIPE answers such questions as: how soon will a given data block of size k arrive at its destination? Which network and protocol will transmit size k blocks the fastest? What is a given network’s effective maximum throughput and saturation level? Does there exist a block size k for which the throughput is maximized? How much communication overhead is due to the network communication protocol layer(s)? How quickly will a small (< 1 kbyte) control message arrive, and which network and protocol are best for this purpose?
This package measures network performance using the PVM protocol, a Parallel Virtual Machine interface frequently used in parallel processing, and which uses in turn TCP as its underlying transport. PVM support is provided in its own separate pvm package on Debian systems.
There are three methods to install netpipe-pvm
on Debian 10. We can use apt-get
, apt
and aptitude
. In the following sections we will describe each method. You can choose one of them.
Install netpipe-pvm Using apt-get
Update apt database with apt-get
using the following command.
sudo apt-get update
After updating apt database, We can install netpipe-pvm
using apt-get
by running the following command:
sudo apt-get -y install netpipe-pvm
Install netpipe-pvm Using apt
Update apt database with apt
using the following command.
sudo apt update
After updating apt database, We can install netpipe-pvm
using apt
by running the following command:
sudo apt -y install netpipe-pvm
Install netpipe-pvm Using aptitude
If you want to follow this method, you might need to install aptitude first since aptitude is usually not installed by default on Debian. Update apt database with aptitude
using the following command.
sudo aptitude update
After updating apt database, We can install netpipe-pvm
using aptitude
by running the following command:
sudo aptitude -y install netpipe-pvm
How To Uninstall netpipe-pvm on Debian 10
To uninstall only the netpipe-pvm
package we can use the following command:
sudo apt-get remove netpipe-pvm
Uninstall netpipe-pvm And Its Dependencies
To uninstall netpipe-pvm
and its dependencies that are no longer needed by Debian 10, we can use the command below:
sudo apt-get -y autoremove netpipe-pvm
Remove netpipe-pvm Configurations and Data
To remove netpipe-pvm
configuration and data from Debian 10 we can use the following command:
sudo apt-get -y purge netpipe-pvm
Remove netpipe-pvm configuration, data, and all of its dependencies
We can use the following command to remove netpipe-pvm
configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge netpipe-pvm
Dependencies
netpipe-pvm have the following dependencies:
References
Summary
In this tutorial we learn how to install netpipe-pvm
package on Debian 10 using different package management tools: apt
, apt-get
and aptitude
.