kioku command not found

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

Introduction

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

kioku: command not found

or when using sudo you get the following error message

sudo: kioku: command not found

Solutions to kioku: command not found

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

In Ubuntu kioku is provided by libkiokudb-perl package.

libkiokudb-perl is:

KiokuDB is a Moose based frontend to various data stores, somewhere in between Tangram and Pixie.

Its purpose is to provide persistence for “regular” objects with as little effort as possible, without sacrificing control over how persistence is actually done, especially for harder to serialize objects.

KiokuDB is also non-invasive: it does not use ties, AUTOLOAD, proxy objects, sv_magic or any other type of trickery.

Many features important for proper Perl space semantics are supported, including shared data, circular structures, weak references, tied structures, etc.

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

sudo apt-get -y install libkiokudb-perl

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

You can also use apt command to install libkiokudb-perl.

sudo apt -y install libkiokudb-perl

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

sudo aptitude install libkiokudb-perl

Summary

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