How To Install golang-github-jacobsa-fuse-dev on Kali Linux
Introduction
In this tutorial we learn how to install golang-github-jacobsa-fuse-dev
on Kali Linux.
What is golang-github-jacobsa-fuse-dev
golang-github-jacobsa-fuse-dev is:
This package allows for writing and mounting user-space file systems from Go. It is a wrapper around bazil.org/fuse, which does the heavy lifting. It does not make use of the bazil.org/fuse/fs sub-package, which allows for something like an object-orientend representation of files and directories, and contains a decent amount of canned behavior.
The chief improvements and/or differences from the bazil.org packages are:
No surprises in the form of magic/default behaviors. You must provide an implementation for every method in the interface. Embed a fuseutil.NotImplementedFileSystem struct to have default implementations that return ENOSYS.
Every method, struct, and field is thoroughly documented. This may help you get your bearings in the world of FUSE, the Linux VFS, traditional file system implementations, etc., all of which tend to be very poorly documented.
Support for arbitrary offsets in directory entries returned by ReadDir. (The bazil.org package assumes that offsets must be counts of bytes.)
The very large disadvantage over using the bazil.org packages is that many features have not yet been exposed.
There are three methods to install golang-github-jacobsa-fuse-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-jacobsa-fuse-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-jacobsa-fuse-dev
using apt-get
by running the following command:
sudo apt-get -y install golang-github-jacobsa-fuse-dev
Install golang-github-jacobsa-fuse-dev Using apt
Update apt database with apt
using the following command.
sudo apt update
After updating apt database, We can install golang-github-jacobsa-fuse-dev
using apt
by running the following command:
sudo apt -y install golang-github-jacobsa-fuse-dev
Install golang-github-jacobsa-fuse-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-jacobsa-fuse-dev
using aptitude
by running the following command:
sudo aptitude -y install golang-github-jacobsa-fuse-dev
How To Uninstall golang-github-jacobsa-fuse-dev on Kali Linux
To uninstall only the golang-github-jacobsa-fuse-dev
package we can use the following command:
sudo apt-get remove golang-github-jacobsa-fuse-dev
Uninstall golang-github-jacobsa-fuse-dev And Its Dependencies
To uninstall golang-github-jacobsa-fuse-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-jacobsa-fuse-dev
Remove golang-github-jacobsa-fuse-dev Configurations and Data
To remove golang-github-jacobsa-fuse-dev
configuration and data from Kali Linux we can use the following command:
sudo apt-get -y purge golang-github-jacobsa-fuse-dev
Remove golang-github-jacobsa-fuse-dev configuration, data, and all of its dependencies
We can use the following command to remove golang-github-jacobsa-fuse-dev
configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge golang-github-jacobsa-fuse-dev
Dependencies
golang-github-jacobsa-fuse-dev have the following dependencies:
- golang-github-jacobsa-bazilfuse-dev
- golang-github-jacobsa-oglematchers-dev
- golang-github-jacobsa-ogletest-dev
- golang-github-jacobsa-reqtrace-dev
- golang-github-jacobsa-syncutil-dev
- golang-github-jacobsa-timeutil-dev
- golang-golang-x-net-dev
- golang-golang-x-sys-dev
References
Summary
In this tutorial we learn how to install golang-github-jacobsa-fuse-dev
package on Kali Linux using different package management tools: apt
, apt-get
and aptitude
.