How To Install golang-github-facebook-ent-dev on Kali Linux
Introduction
In this tutorial we learn how to install golang-github-facebook-ent-dev
on Kali Linux.
What is golang-github-facebook-ent-dev
golang-github-facebook-ent-dev is:
The ent package is a simple, yet powerful entity framework for Go, that makes it easy to build and maintain applications with large data-models.
Highlights include:
- Schema As Code - model any database schema as Go objects.
- Easily Traverse Any Graph - run queries, aggregations and traverse any graph structure easily.
- Statically Typed And Explicit API - 100% statically typed and explicit API using code generation.
- Multi Storage Driver - supports MySQL, PostgreSQL, SQLite and Gremlin.
- Extendable - simple to extend and customize using Go templates.
There are three methods to install golang-github-facebook-ent-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-facebook-ent-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-facebook-ent-dev
using apt-get
by running the following command:
sudo apt-get -y install golang-github-facebook-ent-dev
Install golang-github-facebook-ent-dev Using apt
Update apt database with apt
using the following command.
sudo apt update
After updating apt database, We can install golang-github-facebook-ent-dev
using apt
by running the following command:
sudo apt -y install golang-github-facebook-ent-dev
Install golang-github-facebook-ent-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-facebook-ent-dev
using aptitude
by running the following command:
sudo aptitude -y install golang-github-facebook-ent-dev
How To Uninstall golang-github-facebook-ent-dev on Kali Linux
To uninstall only the golang-github-facebook-ent-dev
package we can use the following command:
sudo apt-get remove golang-github-facebook-ent-dev
Uninstall golang-github-facebook-ent-dev And Its Dependencies
To uninstall golang-github-facebook-ent-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-facebook-ent-dev
Remove golang-github-facebook-ent-dev Configurations and Data
To remove golang-github-facebook-ent-dev
configuration and data from Kali Linux we can use the following command:
sudo apt-get -y purge golang-github-facebook-ent-dev
Remove golang-github-facebook-ent-dev configuration, data, and all of its dependencies
We can use the following command to remove golang-github-facebook-ent-dev
configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge golang-github-facebook-ent-dev
Dependencies
golang-github-facebook-ent-dev have the following dependencies:
- golang-github-data-dog-go-sqlmock-dev
- golang-github-go-openapi-inflect-dev
- golang-github-go-sql-driver-mysql-dev
- golang-github-google-uuid-dev
- golang-github-json-iterator-go-dev
- golang-github-mattn-go-sqlite3-dev
- golang-github-mitchellh-mapstructure-dev
- golang-github-modern-go-reflect2-dev
- golang-github-olekukonko-tablewriter-dev
- golang-github-pkg-errors-dev
- golang-github-spf13-cobra-dev
- golang-github-stretchr-testify-dev
- golang-go-flags-dev
- golang-go.opencensus-dev
- golang-golang-x-sync-dev
- golang-golang-x-tools-dev
- golang-pq-dev
- golang-websocket-dev
References
Summary
In this tutorial we learn how to install golang-github-facebook-ent-dev
package on Kali Linux using different package management tools: apt
, apt-get
and aptitude
.