How To Install maint-guide-ja on Ubuntu 18.04

In this tutorial we learn how to install maint-guide-ja on Ubuntu 18.04. maint-guide-ja is Debian New Maintainers Guide (Japanese)

Introduction

In this tutorial we learn how to install maint-guide-ja on Ubuntu 18.04.

What is maint-guide-ja

maint-guide-ja is:

This package contains the Debian New Maintainers’ Guide.

This document tries to describe the building of a Debian package to ordinary Debian users and prospective developers. It uses fairly non-technical language, and it’s well covered with working examples.

The document contains these chapters: * 1 Getting started The Right Way * 2 First steps * 3 Modifying the source * 4 Required files under debian directory * 5 Other files under debian directory * 6 Building the package * 7 Checking the package for errors * 8 Uploading the package * 9 Updating the package

This is Japanese translation.

There are three methods to install maint-guide-ja on Ubuntu 18.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 maint-guide-ja Using apt-get

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

sudo apt-get update

After updating apt database, We can install maint-guide-ja using apt-get by running the following command:

sudo apt-get -y install maint-guide-ja

Install maint-guide-ja Using apt

Update apt database with apt using the following command.

sudo apt update

After updating apt database, We can install maint-guide-ja using apt by running the following command:

sudo apt -y install maint-guide-ja

Install maint-guide-ja 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 maint-guide-ja using aptitude by running the following command:

sudo aptitude -y install maint-guide-ja

How To Uninstall maint-guide-ja on Ubuntu 18.04

To uninstall only the maint-guide-ja package we can use the following command:

sudo apt-get remove maint-guide-ja

Uninstall maint-guide-ja And Its Dependencies

To uninstall maint-guide-ja and its dependencies that are no longer needed by Ubuntu 18.04, we can use the command below:

sudo apt-get -y autoremove maint-guide-ja

Remove maint-guide-ja Configurations and Data

To remove maint-guide-ja configuration and data from Ubuntu 18.04 we can use the following command:

sudo apt-get -y purge maint-guide-ja

Remove maint-guide-ja configuration, data, and all of its dependencies

We can use the following command to remove maint-guide-ja configurations, data and all of its dependencies, we can use the following command:

sudo apt-get -y autoremove --purge maint-guide-ja

References

Summary

In this tutorial we learn how to install maint-guide-ja package on Ubuntu 18.04 using different package management tools: apt, apt-get and aptitude.