How To Install golang-github-dchest-uniuri-dev on Kali Linux

In this tutorial we learn how to install golang-github-dchest-uniuri-dev on Kali Linux. golang-github-dchest-uniuri-dev is generator of random strings to identify unique objects

Introduction

In this tutorial we learn how to install golang-github-dchest-uniuri-dev on Kali Linux.

What is golang-github-dchest-uniuri-dev

golang-github-dchest-uniuri-dev is:

This Go package contains software to generate random strings good for use in URIs to identify unique objects.

A standard string created by New() is 16 bytes in length and consists of Latin upper and lowercase letters, and numbers (from the set of 62 allowed characters), which means that it has ~95 bits of entropy. To get more entropy, you can use NewLen(UUIDLen), which returns 20-byte string, giving ~119 bits of entropy, or any other desired length.

There are three methods to install golang-github-dchest-uniuri-dev on Kali Linux. We can use apt-get, apt and aptitude. In the following sections we will describe each method. You can choose one of them.

Install golang-github-dchest-uniuri-dev Using apt-get

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

sudo apt-get update

After updating apt database, We can install golang-github-dchest-uniuri-dev using apt-get by running the following command:

sudo apt-get -y install golang-github-dchest-uniuri-dev

Install golang-github-dchest-uniuri-dev Using apt

Update apt database with apt using the following command.

sudo apt update

After updating apt database, We can install golang-github-dchest-uniuri-dev using apt by running the following command:

sudo apt -y install golang-github-dchest-uniuri-dev

Install golang-github-dchest-uniuri-dev Using aptitude

If you want to follow this method, you might need to install aptitude on Kali Linux first since aptitude is usually not installed by default on Kali Linux. Update apt database with aptitude using the following command.

sudo aptitude update

After updating apt database, We can install golang-github-dchest-uniuri-dev using aptitude by running the following command:

sudo aptitude -y install golang-github-dchest-uniuri-dev

How To Uninstall golang-github-dchest-uniuri-dev on Kali Linux

To uninstall only the golang-github-dchest-uniuri-dev package we can use the following command:

sudo apt-get remove golang-github-dchest-uniuri-dev

Uninstall golang-github-dchest-uniuri-dev And Its Dependencies

To uninstall golang-github-dchest-uniuri-dev and its dependencies that are no longer needed by Kali Linux, we can use the command below:

sudo apt-get -y autoremove golang-github-dchest-uniuri-dev

Remove golang-github-dchest-uniuri-dev Configurations and Data

To remove golang-github-dchest-uniuri-dev configuration and data from Kali Linux we can use the following command:

sudo apt-get -y purge golang-github-dchest-uniuri-dev

Remove golang-github-dchest-uniuri-dev configuration, data, and all of its dependencies

We can use the following command to remove golang-github-dchest-uniuri-dev configurations, data and all of its dependencies, we can use the following command:

sudo apt-get -y autoremove --purge golang-github-dchest-uniuri-dev

Dependencies

golang-github-dchest-uniuri-dev have the following dependencies:

References

Summary

In this tutorial we learn how to install golang-github-dchest-uniuri-dev package on Kali Linux using different package management tools: apt, apt-get and aptitude.