How To Install node-graceful-fs on Kali Linux

In this tutorial we learn how to install node-graceful-fs on Kali Linux. node-graceful-fs is drop-in replacement improving the Node.js fs module

Introduction

In this tutorial we learn how to install node-graceful-fs on Kali Linux.

What is node-graceful-fs

node-graceful-fs is:

node-graceful-fs module normalizes behavior across different platforms and environments, and makes filesystem access more resilient to errors:

  • queues up open and readdir calls, and retries them once something closes if there is an EMFILE error from too many file descriptors.
  • fixes lchmod for Node versions prior to 0.6.2
  • implements fs.lutimes if possible. Otherwise it becomes a noop.
  • ignores EINVAL and EPERM errors in chown, fchown or lchown if the user isn’t root.
  • makes lchmod and lchown become noops, if not available.
  • retries reading a file if read results in EAGAIN error.

Node.js is an event-based server-side javascript engine.

There are three methods to install node-graceful-fs 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 node-graceful-fs Using apt-get

Update apt database with apt-get using the following command.

sudo apt-get update

After updating apt database, We can install node-graceful-fs using apt-get by running the following command:

sudo apt-get -y install node-graceful-fs

Install node-graceful-fs Using apt

Update apt database with apt using the following command.

sudo apt update

After updating apt database, We can install node-graceful-fs using apt by running the following command:

sudo apt -y install node-graceful-fs

Install node-graceful-fs 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 node-graceful-fs using aptitude by running the following command:

sudo aptitude -y install node-graceful-fs

How To Uninstall node-graceful-fs on Kali Linux

To uninstall only the node-graceful-fs package we can use the following command:

sudo apt-get remove node-graceful-fs

Uninstall node-graceful-fs And Its Dependencies

To uninstall node-graceful-fs and its dependencies that are no longer needed by Kali Linux, we can use the command below:

sudo apt-get -y autoremove node-graceful-fs

Remove node-graceful-fs Configurations and Data

To remove node-graceful-fs configuration and data from Kali Linux we can use the following command:

sudo apt-get -y purge node-graceful-fs

Remove node-graceful-fs configuration, data, and all of its dependencies

We can use the following command to remove node-graceful-fs configurations, data and all of its dependencies, we can use the following command:

sudo apt-get -y autoremove --purge node-graceful-fs

Dependencies

node-graceful-fs have the following dependencies:

References

Summary

In this tutorial we learn how to install node-graceful-fs package on Kali Linux using different package management tools: apt, apt-get and aptitude.