How To Install linux-image-gcp on Ubuntu 20.04

In this tutorial we learn how to install linux-image-gcp on Ubuntu 20.04. linux-image-gcp is Google Cloud Platform (GCP) Linux kernel image Google Cloud Platform (GCP) Linux kernel image

Introduction

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

What is linux-image-gcp

linux-image-gcp is:

This package will always depend on the latest Google Cloud Platform (GCP) kernel image available.

Package: linux-image-gcp Architecture: amd64 Version: 5.4.0.1009.9 Priority: optional Section: kernel Source: linux-meta-gcp Origin: Ubuntu Maintainer: Ubuntu Kernel Team [email protected] Bugs: https://bugs.launchpad.net/ubuntu/+filebug Installed-Size: 12 Provides: virtualbox-guest-modules (= 6.1.4-dfsg-2), zfs-modules (= 0.8.3-1ubuntu11) Depends: linux-image-5.4.0-1009-gcp Filename: pool/main/l/linux-meta-gcp/linux-image-gcp_5.4.0.1009.9_amd64.deb Size: 2728 MD5sum: 671604e00f4efb30b60072cb0ad04410 SHA1: b008a8d1e4bba1e7436406d1d8e67f19a004f99c SHA256: 74fb54e58f0f642a463d97ea1bea5a4dd3bef162c5ec9f225faf33b4d6d62fe8 Description-en: Google Cloud Platform (GCP) Linux kernel image This package will always depend on the latest Google Cloud Platform (GCP) kernel image available.

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

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

Install linux-image-gcp Using apt

Update apt database with apt using the following command.

sudo apt update

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

sudo apt -y install linux-image-gcp

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

sudo aptitude -y install linux-image-gcp

How To Uninstall linux-image-gcp on Ubuntu 20.04

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

sudo apt-get remove linux-image-gcp

Uninstall linux-image-gcp And Its Dependencies

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

Remove linux-image-gcp Configurations and Data

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

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

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

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

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

References

Summary

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