How To Install linux-image-oracle on Ubuntu 20.04

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

Introduction

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

What is linux-image-oracle

linux-image-oracle is:

This package will always depend on the latest kernel image available for Oracle systems.

Package: linux-image-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: virtualbox-guest-modules (= 6.1.4-dfsg-2), zfs-modules (= 0.8.3-1ubuntu11) Depends: linux-image-5.4.0-1009-oracle, linux-modules-extra-5.4.0-1009-oracle Filename: pool/main/l/linux-meta-oracle/linux-image-oracle_5.4.0.1009.9_amd64.deb Size: 2768 MD5sum: 7ab9db25a0de7b5b91372b0e7ff8e637 SHA1: ad7aac4333929e5a3965417f1523c48aa0549360 SHA256: 293e5ae321593614b5bbd24354479889481198ea66f41152b88ba1c5f2e92827 Description-en: Linux kernel image for Oracle systems. This package will always depend on the latest kernel image available for Oracle systems.

There are three methods to install linux-image-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-image-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-image-oracle using apt-get by running the following command:

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

Install linux-image-oracle Using apt

Update apt database with apt using the following command.

sudo apt update

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

sudo apt -y install linux-image-oracle

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

sudo aptitude -y install linux-image-oracle

How To Uninstall linux-image-oracle on Ubuntu 20.04

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

sudo apt-get remove linux-image-oracle

Uninstall linux-image-oracle And Its Dependencies

To uninstall linux-image-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-image-oracle

Remove linux-image-oracle Configurations and Data

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

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

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

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

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

References

Summary

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