How To Install linux-tools-lowlatency on Ubuntu 20.04

In this tutorial we learn how to install linux-tools-lowlatency on Ubuntu 20.04. linux-tools-lowlatency is lowlatency Linux kernel tools lowlatency Linux kernel tools

Introduction

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

What is linux-tools-lowlatency

linux-tools-lowlatency is:

This package will always depend on the latest lowlatency kernel tools available.

Package: linux-tools-lowlatency Architecture: amd64 Version: 5.4.0.26.32 Priority: optional Section: kernel Source: linux-meta Origin: Ubuntu Maintainer: Ubuntu Kernel Team [email protected] Bugs: https://bugs.launchpad.net/ubuntu/+filebug Installed-Size: 17 Provides: linux-tools Depends: linux-tools-5.4.0-26-lowlatency Filename: pool/main/l/linux-meta/linux-tools-lowlatency_5.4.0.26.32_amd64.deb Size: 2692 MD5sum: 2d0517beb6667336697f624face954c7 SHA1: 1cc10e5f7602e5eb75a33bff94d39b00a10d92d8 SHA256: 8f23cf72d8f0551a89ea2b251ded91980a9286d6322dde47d80ba0f5f652d21d Description-en: lowlatency Linux kernel tools This package will always depend on the latest lowlatency kernel tools available.

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

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

Install linux-tools-lowlatency Using apt

Update apt database with apt using the following command.

sudo apt update

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

sudo apt -y install linux-tools-lowlatency

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

sudo aptitude -y install linux-tools-lowlatency

How To Uninstall linux-tools-lowlatency on Ubuntu 20.04

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

sudo apt-get remove linux-tools-lowlatency

Uninstall linux-tools-lowlatency And Its Dependencies

To uninstall linux-tools-lowlatency 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-lowlatency

Remove linux-tools-lowlatency Configurations and Data

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

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

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

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

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

References

Summary

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