How To Install gogottrpc on Kali Linux
Introduction
In this tutorial we learn how to install gogottrpc
on Kali Linux.
What is gogottrpc
gogottrpc is:
The existing grpc-go project requires a lot of memory overhead for importing packages and at runtime. While this is great for many services with low density requirements, this can be a problem when running a large number of services on a single machine or on a machine with a small amount of memory.
Using the same GRPC definitions, this project reduces the binary size and protocol overhead required. We do this by eliding the net/http, net/http2 and grpc package used by grpc replacing it with a lightweight framing protocol. The result are smaller binaries that use less resident memory with the same ease of use as GRPC.
Please note that while this project supports generating either end of the protocol, the generated service definitions will be incompatible with regular GRPC services, as they do not speak the same protocol.
This package provides utilities.
There are three methods to install gogottrpc
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 gogottrpc Using apt-get
Update apt database with apt-get
using the following command.
sudo apt-get update
After updating apt database, We can install gogottrpc
using apt-get
by running the following command:
sudo apt-get -y install gogottrpc
Install gogottrpc Using apt
Update apt database with apt
using the following command.
sudo apt update
After updating apt database, We can install gogottrpc
using apt
by running the following command:
sudo apt -y install gogottrpc
Install gogottrpc 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 gogottrpc
using aptitude
by running the following command:
sudo aptitude -y install gogottrpc
How To Uninstall gogottrpc on Kali Linux
To uninstall only the gogottrpc
package we can use the following command:
sudo apt-get remove gogottrpc
Uninstall gogottrpc And Its Dependencies
To uninstall gogottrpc
and its dependencies that are no longer needed by Kali Linux, we can use the command below:
sudo apt-get -y autoremove gogottrpc
Remove gogottrpc Configurations and Data
To remove gogottrpc
configuration and data from Kali Linux we can use the following command:
sudo apt-get -y purge gogottrpc
Remove gogottrpc configuration, data, and all of its dependencies
We can use the following command to remove gogottrpc
configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge gogottrpc
Dependencies
gogottrpc have the following dependencies:
References
Summary
In this tutorial we learn how to install gogottrpc
package on Kali Linux using different package management tools: apt
, apt-get
and aptitude
.