How To Install ibod on Debian 9
Introduction
In this tutorial we learn how to install ibod on Debian 9.
What is ibod
ibod is:
ibod is an ISDN MPPP bandwidth on demand daemon designed to operate in conjunction with isdn4linux. The program monitors inbound and outbound traffic on the ISDN interface. When the required bandwidth exceeds the capacity for the current number of ISDN B-channels, more (slave) channels are connected according to the MPPP protocol. When the traffic decreases, the slave channel(s) are disconnected.
There are three methods to install ibod on Debian 9. We can use apt-get, apt and aptitude. In the following sections we will describe each method. You can choose one of them.
Install ibod Using apt-get
Update apt database with apt-get using the following command.
sudo apt-get update
After updating apt database, We can install ibod using apt-get by running the following command:
sudo apt-get -y install ibod
Install ibod Using apt
Update apt database with apt using the following command.
sudo apt update
After updating apt database, We can install ibod using apt by running the following command:
sudo apt -y install ibod
Install ibod 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 ibod using aptitude by running the following command:
sudo aptitude -y install ibod
How To Uninstall ibod on Debian 9
To uninstall only the ibod package we can use the following command:
sudo apt-get remove ibod
Uninstall ibod And Its Dependencies
To uninstall ibod and its dependencies that are no longer needed by Debian 9, we can use the command below:
sudo apt-get -y autoremove ibod
Remove ibod Configurations and Data
To remove ibod configuration and data from Debian 9 we can use the following command:
sudo apt-get -y purge ibod
Remove ibod configuration, data, and all of its dependencies
We can use the following command to remove ibod configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge ibod
Dependencies
ibod have the following dependencies:
References
Summary
In this tutorial we learn how to install ibod package on Debian 9 using different package management tools: apt, apt-get and aptitude.