How To Install libwebsockets-evlib-glib on Debian 12

Learn how to install libwebsockets-evlib-glib on Debian 12 with this tutorial. libwebsockets-evlib-glib is lightweight C websockets library

Introduction

In this tutorial we learn how to install libwebsockets-evlib-glib on Debian 12.

What is libwebsockets-evlib-glib

libwebsockets-evlib-glib is:

Libwebsockets is a lightweight pure C library for both websockets clients and servers built to use minimal CPU and memory resources and provide fast throughput in both directions.

This package contains the shared library for evlib_glib plugin.

There are three methods to install libwebsockets-evlib-glib 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 libwebsockets-evlib-glib Using apt-get

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

sudo apt-get update

After updating apt database, We can install libwebsockets-evlib-glib using apt-get by running the following command:

sudo apt-get -y install libwebsockets-evlib-glib

Install libwebsockets-evlib-glib Using apt

Update apt database with apt using the following command.

sudo apt update

After updating apt database, We can install libwebsockets-evlib-glib using apt by running the following command:

sudo apt -y install libwebsockets-evlib-glib

Install libwebsockets-evlib-glib 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 libwebsockets-evlib-glib using aptitude by running the following command:

sudo aptitude -y install libwebsockets-evlib-glib

How To Uninstall libwebsockets-evlib-glib on Debian 12

To uninstall only the libwebsockets-evlib-glib package we can use the following command:

sudo apt-get remove libwebsockets-evlib-glib

Uninstall libwebsockets-evlib-glib And Its Dependencies

To uninstall libwebsockets-evlib-glib and its dependencies that are no longer needed by Debian 12, we can use the command below:

sudo apt-get -y autoremove libwebsockets-evlib-glib

Remove libwebsockets-evlib-glib Configurations and Data

To remove libwebsockets-evlib-glib configuration and data from Debian 12 we can use the following command:

sudo apt-get -y purge libwebsockets-evlib-glib

Remove libwebsockets-evlib-glib configuration, data, and all of its dependencies

We can use the following command to remove libwebsockets-evlib-glib configurations, data and all of its dependencies, we can use the following command:

sudo apt-get -y autoremove --purge libwebsockets-evlib-glib

Dependencies

libwebsockets-evlib-glib have the following dependencies:

References

Summary

In this tutorial we learn how to install libwebsockets-evlib-glib package on Debian 12 using different package management tools: apt, apt-get and aptitude.