How To Install openbox-dev on Ubuntu 20.04

In this tutorial we learn how to install openbox-dev on Ubuntu 20.04. openbox-dev is development files for the openbox window manager development files for the openbox window manager

Introduction

In this tutorial we learn how to install openbox-dev on Ubuntu 20.04.

What is openbox-dev

openbox-dev is:

Openbox works with your applications, and makes your desktop easier to manage. This is because the approach to its development was the opposite of what seems to be the general case for window managers. Openbox was written first to comply with standards and to work properly. Only when that was in place did the team turn to the visual interface.

Openbox is fully functional as a stand-alone working environment, or can be used as a drop-in replacement for the default window manager in the GNOME or KDE desktop environments.

Openbox 3 is a completely new breed of window manager. It is not based upon any existing code base, although the visual appearance has been based upon that of Blackbox. Openbox 2 was based on the Blackbox 0.65.0 codebase.

This package contains the development headers for building openbox stuff.

Package: openbox-dev Architecture: amd64 Version: 3.6.1-9 Priority: optional Section: universe/libdevel Source: openbox Origin: Ubuntu Maintainer: Ubuntu Developers [email protected] Original-Maintainer: Mateusz Łukasik [email protected] Bugs: https://bugs.launchpad.net/ubuntu/+filebug Installed-Size: 376 Depends: libobrender32v5 (= 3.6.1-9), libobt2v5 (= 3.6.1-9), libxml2-dev, libglib2.0-dev, libpango1.0-dev, libimlib2-dev, librsvg2-dev, libxcursor-dev Filename: pool/universe/o/openbox/openbox-dev_3.6.1-9_amd64.deb Size: 75344 MD5sum: a1c54e2ff81d0d95524d1177f38a4acf SHA1: e700e85c1ea133b135c1a8f67c52bbe533b4ba40 SHA256: a338d2885142bd58abcacf6c841271c06022550e1776c8bd97fb5554a7996ce9 Homepage: http://www.openbox.org Description-en: development files for the openbox window manager Openbox works with your applications, and makes your desktop easier to manage. This is because the approach to its development was the opposite of what seems to be the general case for window managers. Openbox was written first to comply with standards and to work properly. Only when that was in place did the team turn to the visual interface.

Openbox is fully functional as a stand-alone working environment, or can be used as a drop-in replacement for the default window manager in the GNOME or KDE desktop environments.

Openbox 3 is a completely new breed of window manager. It is not based upon any existing code base, although the visual appearance has been based upon that of Blackbox. Openbox 2 was based on the Blackbox 0.65.0 codebase.

This package contains the development headers for building openbox stuff.

There are three methods to install openbox-dev 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 openbox-dev Using apt-get

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

sudo apt-get update

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

sudo apt-get -y install openbox-dev

Install openbox-dev Using apt

Update apt database with apt using the following command.

sudo apt update

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

sudo apt -y install openbox-dev

Install openbox-dev 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 openbox-dev using aptitude by running the following command:

sudo aptitude -y install openbox-dev

How To Uninstall openbox-dev on Ubuntu 20.04

To uninstall only the openbox-dev package we can use the following command:

sudo apt-get remove openbox-dev

Uninstall openbox-dev And Its Dependencies

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

sudo apt-get -y autoremove openbox-dev

Remove openbox-dev Configurations and Data

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

sudo apt-get -y purge openbox-dev

Remove openbox-dev configuration, data, and all of its dependencies

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

sudo apt-get -y autoremove --purge openbox-dev

References

Summary

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