How To Install libx11-protocol-other-perl on Ubuntu 18.04

In this tutorial we learn how to install libx11-protocol-other-perl on Ubuntu 18.04. libx11-protocol-other-perl is miscellaneous X11

Introduction

In this tutorial we learn how to install libx11-protocol-other-perl on Ubuntu 18.04.

What is libx11-protocol-other-perl

libx11-protocol-other-perl is:

X11::Protocol::Other provides some miscellaneous extras and helpers for X11::Protocol. Modules provided are:

  • X11::Protocol::Other - misc helpers
  • X11::Protocol::ChooseWindow - user click on window
  • X11::Protocol::GrabServer - oop block scope server grab
  • X11::Protocol::WM - window manager things
  • X11::Protocol::XSetRoot - set root window background
  • X11::AtomConstants - atoms
  • X11::CursorFont - cursor names
  • Encode::X11 - compound text encode/decode
  • X11::Protocol::Ext::Composite - obscured window content
  • X11::Protocol::Ext::DAMAGE - window/pixmap content changes
  • X11::Protocol::Ext::DOUBLE_BUFFER - off-screen swapped drawing
  • X11::Protocol::Ext::MIT_SCREEN_SAVER - external screen saver
  • X11::Protocol::Ext::MIT_SHM - images through shared memory
  • X11::Protocol::Ext::MIT_SUNDRY_NONSTANDARD - old bug mode
  • X11::Protocol::Ext::TOG_CUP - colormap helpers
  • X11::Protocol::Ext::XFree86_DGA - direct video RAM access
  • X11::Protocol::Ext::XFIXES - various regions, cursors, selection events
  • X11::Protocol::Ext::XINERAMA.pm - multiple monitors as one big screen
  • X11::Protocol::Ext::X_Resource - server usage statistics

There are three methods to install libx11-protocol-other-perl on Ubuntu 18.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 libx11-protocol-other-perl Using apt-get

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

sudo apt-get update

After updating apt database, We can install libx11-protocol-other-perl using apt-get by running the following command:

sudo apt-get -y install libx11-protocol-other-perl

Install libx11-protocol-other-perl Using apt

Update apt database with apt using the following command.

sudo apt update

After updating apt database, We can install libx11-protocol-other-perl using apt by running the following command:

sudo apt -y install libx11-protocol-other-perl

Install libx11-protocol-other-perl 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 libx11-protocol-other-perl using aptitude by running the following command:

sudo aptitude -y install libx11-protocol-other-perl

How To Uninstall libx11-protocol-other-perl on Ubuntu 18.04

To uninstall only the libx11-protocol-other-perl package we can use the following command:

sudo apt-get remove libx11-protocol-other-perl

Uninstall libx11-protocol-other-perl And Its Dependencies

To uninstall libx11-protocol-other-perl and its dependencies that are no longer needed by Ubuntu 18.04, we can use the command below:

sudo apt-get -y autoremove libx11-protocol-other-perl

Remove libx11-protocol-other-perl Configurations and Data

To remove libx11-protocol-other-perl configuration and data from Ubuntu 18.04 we can use the following command:

sudo apt-get -y purge libx11-protocol-other-perl

Remove libx11-protocol-other-perl configuration, data, and all of its dependencies

We can use the following command to remove libx11-protocol-other-perl configurations, data and all of its dependencies, we can use the following command:

sudo apt-get -y autoremove --purge libx11-protocol-other-perl

References

Summary

In this tutorial we learn how to install libx11-protocol-other-perl package on Ubuntu 18.04 using different package management tools: apt, apt-get and aptitude.