How To Install dm-writeboost-dkms on Ubuntu 20.04

In this tutorial we learn how to install dm-writeboost-dkms on Ubuntu 20.04. dm-writeboost-dkms is log-structured caching for Linux log-structured caching for Linux

Introduction

In this tutorial we learn how to install dm-writeboost-dkms on Ubuntu 20.04.

What is dm-writeboost-dkms

dm-writeboost-dkms is:

dm-writeboost is an OS-level IO controller that builds logs from in-coming writes (data and metadata) and then writes the logs sequentially similar to log-structured filesystem. As a further extension, dm-writeboost supports read-caching which also writes data sequentially.

This package provides DKMS kernel module for Linux Kernel 3.10+.

Package: dm-writeboost-dkms Architecture: all Version: 2.2.9-1ubuntu1 Priority: optional Section: universe/kernel Source: dm-writeboost Origin: Ubuntu Maintainer: Ubuntu Developers [email protected] Original-Maintainer: Dmitry Smirnov [email protected] Bugs: https://bugs.launchpad.net/ubuntu/+filebug Installed-Size: 137 Depends: dkms (>= 2.1.0.0) Recommends: kmod, dmsetup, writeboost Filename: pool/universe/d/dm-writeboost/dm-writeboost-dkms_2.2.9-1ubuntu1_all.deb Size: 31496 MD5sum: a71646d8653ce42e16db80e4968f3d3a SHA1: 12dba2f13e75285d100e4fef636c283db52efb62 SHA256: bcc73f549ba9aaca430dd4d6157982a88bc9f93e0fe4adaa747be32b7e9ea6a4 Homepage: https://github.com/akiradeveloper/dm-writeboost Description-en: log-structured caching for Linux dm-writeboost is an OS-level IO controller that builds logs from in-coming writes (data and metadata) and then writes the logs sequentially similar to log-structured filesystem. As a further extension, dm-writeboost supports read-caching which also writes data sequentially.

This package provides DKMS kernel module for Linux Kernel 3.10+.

There are three methods to install dm-writeboost-dkms 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 dm-writeboost-dkms Using apt-get

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

sudo apt-get update

After updating apt database, We can install dm-writeboost-dkms using apt-get by running the following command:

sudo apt-get -y install dm-writeboost-dkms

Install dm-writeboost-dkms Using apt

Update apt database with apt using the following command.

sudo apt update

After updating apt database, We can install dm-writeboost-dkms using apt by running the following command:

sudo apt -y install dm-writeboost-dkms

Install dm-writeboost-dkms 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 dm-writeboost-dkms using aptitude by running the following command:

sudo aptitude -y install dm-writeboost-dkms

How To Uninstall dm-writeboost-dkms on Ubuntu 20.04

To uninstall only the dm-writeboost-dkms package we can use the following command:

sudo apt-get remove dm-writeboost-dkms

Uninstall dm-writeboost-dkms And Its Dependencies

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

sudo apt-get -y autoremove dm-writeboost-dkms

Remove dm-writeboost-dkms Configurations and Data

To remove dm-writeboost-dkms configuration and data from Ubuntu 20.04 we can use the following command:

sudo apt-get -y purge dm-writeboost-dkms

Remove dm-writeboost-dkms configuration, data, and all of its dependencies

We can use the following command to remove dm-writeboost-dkms configurations, data and all of its dependencies, we can use the following command:

sudo apt-get -y autoremove --purge dm-writeboost-dkms

References

Summary

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