How To Install ruby-googleapis-common-protos-types on Kali Linux
Introduction
In this tutorial we learn how to install ruby-googleapis-common-protos-types
on Kali Linux.
What is ruby-googleapis-common-protos-types
ruby-googleapis-common-protos-types is:
Google APIs are typically deployed as API services that are hosted under different DNS names. One API service may implement multiple APIs and multiple versions of the same API.
Google APIs use Protocol Buffers version 3 (proto3) as their Interface Definition Language (IDL) to define the API interface and the structure of the payload messages. The same interface definition is used for both REST and RPC versions of the API, which can be accessed over different wire protocols.
There are three methods to install ruby-googleapis-common-protos-types
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 ruby-googleapis-common-protos-types Using apt-get
Update apt database with apt-get
using the following command.
sudo apt-get update
After updating apt database, We can install ruby-googleapis-common-protos-types
using apt-get
by running the following command:
sudo apt-get -y install ruby-googleapis-common-protos-types
Install ruby-googleapis-common-protos-types Using apt
Update apt database with apt
using the following command.
sudo apt update
After updating apt database, We can install ruby-googleapis-common-protos-types
using apt
by running the following command:
sudo apt -y install ruby-googleapis-common-protos-types
Install ruby-googleapis-common-protos-types 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 ruby-googleapis-common-protos-types
using aptitude
by running the following command:
sudo aptitude -y install ruby-googleapis-common-protos-types
How To Uninstall ruby-googleapis-common-protos-types on Kali Linux
To uninstall only the ruby-googleapis-common-protos-types
package we can use the following command:
sudo apt-get remove ruby-googleapis-common-protos-types
Uninstall ruby-googleapis-common-protos-types And Its Dependencies
To uninstall ruby-googleapis-common-protos-types
and its dependencies that are no longer needed by Kali Linux, we can use the command below:
sudo apt-get -y autoremove ruby-googleapis-common-protos-types
Remove ruby-googleapis-common-protos-types Configurations and Data
To remove ruby-googleapis-common-protos-types
configuration and data from Kali Linux we can use the following command:
sudo apt-get -y purge ruby-googleapis-common-protos-types
Remove ruby-googleapis-common-protos-types configuration, data, and all of its dependencies
We can use the following command to remove ruby-googleapis-common-protos-types
configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge ruby-googleapis-common-protos-types
Dependencies
ruby-googleapis-common-protos-types have the following dependencies:
References
Summary
In this tutorial we learn how to install ruby-googleapis-common-protos-types
package on Kali Linux using different package management tools: apt
, apt-get
and aptitude
.