sasutil command not found

In this troubleshooting guide we learn how to fix sasutil command not found error message

Introduction

When you run more command in linux terminal / console, you get the following error message

sasutil: command not found

or when using sudo you get the following error message

sudo: sasutil: command not found

Solutions to sasutil: command not found

How To Fix sasutil: command not found in Ubuntu / Debian / Kali Linux / Raspbian

In Ubuntu sasutil is provided by sphde-utils package.

sphde-utils is:

SPHDE is composed of two major software layers: The Shared Address Space (SAS) layer provides the basic services for a shared address space and transparent, persistent storage. The Shared Persistent Heap (SPH) layer organizes blocks of SAS storage into useful functions for storing and retrieving data.

This package contains the SPHDE utilities.

To fix this problem, we can install more using the command below.

sudo apt-get -y install sphde-utils

This command might take some time to finish depending on your machine internet connection.

You can also use apt command to install sphde-utils.

sudo apt -y install sphde-utils

Or if you have aptitude installed you can use the following command.

sudo aptitude install sphde-utils

Summary

In this tutorial we learn how to fix sasutil command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.