How To Install golang-github-shurcool-httpfs-dev on Kali Linux

In this tutorial we learn how to install golang-github-shurcool-httpfs-dev on Kali Linux. golang-github-shurcool-httpfs-dev is Go library for working with the http.FileSystem interface

Introduction

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

What is golang-github-shurcool-httpfs-dev

golang-github-shurcool-httpfs-dev is:

golang-github-shurcool-httpfs-dev provides collection of Go library for working with the http.FileSystem interface.

  • filter Package filter offers an http.FileSystem wrapper with the ability to keep or skip files.
  • html/vfstemplate Package vfstemplate offers html/template helpers that use http.FileSystem.
  • httputil Package httputil implements HTTP utility functions for http.FileSystem.
  • path/vfspath Package vfspath implements utility routines for manipulating virtual file system paths.
  • text/vfstemplate Package vfstemplate offers text/template helpers that use http.FileSystem.
  • union Package union offers a simple http.FileSystem that can unify multiple filesystems at various mount points.
  • vfsutil Package vfsutil implements some I/O utility functions for http.FileSystem.

There are three methods to install golang-github-shurcool-httpfs-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-shurcool-httpfs-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-shurcool-httpfs-dev using apt-get by running the following command:

sudo apt-get -y install golang-github-shurcool-httpfs-dev

Install golang-github-shurcool-httpfs-dev Using apt

Update apt database with apt using the following command.

sudo apt update

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

sudo apt -y install golang-github-shurcool-httpfs-dev

Install golang-github-shurcool-httpfs-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-shurcool-httpfs-dev using aptitude by running the following command:

sudo aptitude -y install golang-github-shurcool-httpfs-dev

How To Uninstall golang-github-shurcool-httpfs-dev on Kali Linux

To uninstall only the golang-github-shurcool-httpfs-dev package we can use the following command:

sudo apt-get remove golang-github-shurcool-httpfs-dev

Uninstall golang-github-shurcool-httpfs-dev And Its Dependencies

To uninstall golang-github-shurcool-httpfs-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-shurcool-httpfs-dev

Remove golang-github-shurcool-httpfs-dev Configurations and Data

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

sudo apt-get -y purge golang-github-shurcool-httpfs-dev

Remove golang-github-shurcool-httpfs-dev configuration, data, and all of its dependencies

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

sudo apt-get -y autoremove --purge golang-github-shurcool-httpfs-dev

Dependencies

golang-github-shurcool-httpfs-dev have the following dependencies:

References

Summary

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