How To Install linux-tools-oracle on Ubuntu 20.04

In this tutorial we learn how to install linux-tools-oracle on Ubuntu 20.04. linux-tools-oracle is Linux kernel versioned tools for Oracle systems. Linux kernel versioned tools for Oracle systems.

Introduction

In this tutorial we learn how to install linux-tools-oracle on Ubuntu 20.04.

What is linux-tools-oracle

linux-tools-oracle is:

This package will always depend on the latest Linux kernel versioned tools available for Oracle systems.

Package: linux-tools-oracle Architecture: amd64 Version: 5.4.0.1009.9 Priority: optional Section: kernel Source: linux-meta-oracle Origin: Ubuntu Maintainer: Ubuntu Kernel Team [email protected] Bugs: https://bugs.launchpad.net/ubuntu/+filebug Installed-Size: 10 Provides: linux-tools Depends: linux-tools-5.4.0-1009-oracle Filename: pool/main/l/linux-meta-oracle/linux-tools-oracle_5.4.0.1009.9_amd64.deb Size: 2716 MD5sum: 4777529722d0db2f189da4a086801bd7 SHA1: 378d7cc0955b05300a40c0ed5f5465d85f2bdea2 SHA256: d3b0ba467330109faa40113a13549ba180122d2d3dab11dd79446ae244913970 Description-en: Linux kernel versioned tools for Oracle systems. This package will always depend on the latest Linux kernel versioned tools available for Oracle systems.

There are three methods to install linux-tools-oracle 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 linux-tools-oracle Using apt-get

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

sudo apt-get update

After updating apt database, We can install linux-tools-oracle using apt-get by running the following command:

sudo apt-get -y install linux-tools-oracle

Install linux-tools-oracle Using apt

Update apt database with apt using the following command.

sudo apt update

After updating apt database, We can install linux-tools-oracle using apt by running the following command:

sudo apt -y install linux-tools-oracle

Install linux-tools-oracle 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 linux-tools-oracle using aptitude by running the following command:

sudo aptitude -y install linux-tools-oracle

How To Uninstall linux-tools-oracle on Ubuntu 20.04

To uninstall only the linux-tools-oracle package we can use the following command:

sudo apt-get remove linux-tools-oracle

Uninstall linux-tools-oracle And Its Dependencies

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

sudo apt-get -y autoremove linux-tools-oracle

Remove linux-tools-oracle Configurations and Data

To remove linux-tools-oracle configuration and data from Ubuntu 20.04 we can use the following command:

sudo apt-get -y purge linux-tools-oracle

Remove linux-tools-oracle configuration, data, and all of its dependencies

We can use the following command to remove linux-tools-oracle configurations, data and all of its dependencies, we can use the following command:

sudo apt-get -y autoremove --purge linux-tools-oracle

References

Summary

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