How To Install ec2-hibinit-agent on Ubuntu 20.04

In this tutorial we learn how to install ec2-hibinit-agent on Ubuntu 20.04. ec2-hibinit-agent is Amazon EC2 hibernation agent Amazon EC2 hibernation agent

Introduction

In this tutorial we learn how to install ec2-hibinit-agent on Ubuntu 20.04.

What is ec2-hibinit-agent

ec2-hibinit-agent is:

The purpose of this agent is to create a setup for an instance to support hibernation feature.

The setup is created only on supported instance types.

Package: ec2-hibinit-agent Architecture: all Version: 1.0.0-0ubuntu9 Priority: optional Section: utils Origin: Ubuntu Maintainer: Ubuntu Developers [email protected] Bugs: https://bugs.launchpad.net/ubuntu/+filebug Installed-Size: 64 Depends: python3:any, acpid, grub2-common Filename: pool/main/e/ec2-hibinit-agent/ec2-hibinit-agent_1.0.0-0ubuntu9_all.deb Size: 11384 MD5sum: 46527e4d8f9120cf6532e80d0cba8d6a SHA1: bb72dbc0ee4b466f137a23050c5188f4d7a124d6 SHA256: ab224f4a38731b348ba4f363a443d98168fd4308f2ac4885a7b26421e4133419 Description-en: Amazon EC2 hibernation agent The purpose of this agent is to create a setup for an instance to support hibernation feature.

The setup is created only on supported instance types.

There are three methods to install ec2-hibinit-agent 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 ec2-hibinit-agent Using apt-get

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

sudo apt-get update

After updating apt database, We can install ec2-hibinit-agent using apt-get by running the following command:

sudo apt-get -y install ec2-hibinit-agent

Install ec2-hibinit-agent Using apt

Update apt database with apt using the following command.

sudo apt update

After updating apt database, We can install ec2-hibinit-agent using apt by running the following command:

sudo apt -y install ec2-hibinit-agent

Install ec2-hibinit-agent 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 ec2-hibinit-agent using aptitude by running the following command:

sudo aptitude -y install ec2-hibinit-agent

How To Uninstall ec2-hibinit-agent on Ubuntu 20.04

To uninstall only the ec2-hibinit-agent package we can use the following command:

sudo apt-get remove ec2-hibinit-agent

Uninstall ec2-hibinit-agent And Its Dependencies

To uninstall ec2-hibinit-agent and its dependencies that are no longer needed by Ubuntu 20.04, we can use the command below:

sudo apt-get -y autoremove ec2-hibinit-agent

Remove ec2-hibinit-agent Configurations and Data

To remove ec2-hibinit-agent configuration and data from Ubuntu 20.04 we can use the following command:

sudo apt-get -y purge ec2-hibinit-agent

Remove ec2-hibinit-agent configuration, data, and all of its dependencies

We can use the following command to remove ec2-hibinit-agent configurations, data and all of its dependencies, we can use the following command:

sudo apt-get -y autoremove --purge ec2-hibinit-agent

References

Summary

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