How To Install exip on Debian 12
Introduction
In this tutorial we learn how to install exip
on Debian 12.
What is exip
exip is:
This package is a Golang library to get your external ip from multiple services.
Design/Implement STUNSource (Session Traversal Utilities for NAT (STUN)) See RFC 3489 and RFC 5389 for more details.
This is the binary package for the exip utility.
There are three methods to install exip
on Debian 12. We can use apt-get
, apt
and aptitude
. In the following sections we will describe each method. You can choose one of them.
Install exip Using apt-get
Update apt database with apt-get
using the following command.
sudo apt-get update
After updating apt database, We can install exip
using apt-get
by running the following command:
sudo apt-get -y install exip
Install exip Using apt
Update apt database with apt
using the following command.
sudo apt update
After updating apt database, We can install exip
using apt
by running the following command:
sudo apt -y install exip
Install exip 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 exip
using aptitude
by running the following command:
sudo aptitude -y install exip
How To Uninstall exip on Debian 12
To uninstall only the exip
package we can use the following command:
sudo apt-get remove exip
Uninstall exip And Its Dependencies
To uninstall exip
and its dependencies that are no longer needed by Debian 12, we can use the command below:
sudo apt-get -y autoremove exip
Remove exip Configurations and Data
To remove exip
configuration and data from Debian 12 we can use the following command:
sudo apt-get -y purge exip
Remove exip configuration, data, and all of its dependencies
We can use the following command to remove exip
configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge exip
Dependencies
exip have the following dependencies:
References
Summary
In this tutorial we learn how to install exip
package on Debian 12 using different package management tools: apt
, apt-get
and aptitude
.