How To Install foxeye-dbg on Ubuntu 20.04

In this tutorial we learn how to install foxeye-dbg on Ubuntu 20.04. foxeye-dbg is Universal modular network agent - debugging symbols

Introduction

In this tutorial we learn how to install foxeye-dbg on Ubuntu 20.04.

What is foxeye-dbg

foxeye-dbg is:

FoxEye is a multipurpose generic modular base to create clients or servers for client-server type networks such as IRC, ICQ, etc. All what you need to make an IRC bot or ICQ client is few modules that implement functionality you require. The FoxEye written in pure C with small resource requirements in mind.

This package contains the debugging symbols. Build-Ids: 0400f82e058888fdc232b0847e9efc8cde1e949e 0b9033f672dd55071819098cdc206a5b53154dbf 0e888476539078fb9f9d1e4295b79a85d667f2d3 4aa9dbdf7c20baaf37e012b77b2c2648d327d8ef 51afb9284601d4aee54d81bd4ea0c7566109e978 538c2c6b7654d2af5b2d9ba5e85f671241739463 5b092a5a72c9bcb636cc4be6fd36ebcbf2f9a56a 7567fe054687767a4cf1ba6a24875dfe3d93ca19 7dc86176a39a00894f64ae74b0b4219b62cc6cc4 7faf1cbe9d199bb1a9f96739ca9edc019d9dd91d bcadcf35e07af0e43894fcc3036f1e8ef30b229f cc1c2c749553adb2443cfc678f4f56c55c38310a d8eb54c992892d3168f55d1cebc60a55b51b4c63 d9e1ee7fab02c480451fce7fbb2f87d61dc36364 fc408642cd7f018f78c5103a2a2d47bf1eb3df4f ff12ceb5550f6091d5f9c76294f96865c709cbe2

There are three methods to install foxeye-dbg on Ubuntu 20.04. We can use apt-get, apt and aptitude. In the following sections we will describe each method. You can choose one of them.

Install foxeye-dbg Using apt-get

Update apt database with apt-get using the following command.

sudo apt-get update

After updating apt database, We can install foxeye-dbg using apt-get by running the following command:

sudo apt-get -y install foxeye-dbg

Install foxeye-dbg Using apt

Update apt database with apt using the following command.

sudo apt update

After updating apt database, We can install foxeye-dbg using apt by running the following command:

sudo apt -y install foxeye-dbg

Install foxeye-dbg 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 Ubuntu. Update apt database with aptitude using the following command.

sudo aptitude update

After updating apt database, We can install foxeye-dbg using aptitude by running the following command:

sudo aptitude -y install foxeye-dbg

How To Uninstall foxeye-dbg on Ubuntu 20.04

To uninstall only the foxeye-dbg package we can use the following command:

sudo apt-get remove foxeye-dbg

Uninstall foxeye-dbg And Its Dependencies

To uninstall foxeye-dbg and its dependencies that are no longer needed by Ubuntu 20.04, we can use the command below:

sudo apt-get -y autoremove foxeye-dbg

Remove foxeye-dbg Configurations and Data

To remove foxeye-dbg configuration and data from Ubuntu 20.04 we can use the following command:

sudo apt-get -y purge foxeye-dbg

Remove foxeye-dbg configuration, data, and all of its dependencies

We can use the following command to remove foxeye-dbg configurations, data and all of its dependencies, we can use the following command:

sudo apt-get -y autoremove --purge foxeye-dbg

References

Summary

In this tutorial we learn how to install foxeye-dbg package on Ubuntu 20.04 using different package management tools: apt, apt-get and aptitude.