transform-fdt command not found

In this troubleshooting guide we learn how to fix transform-fdt command not found error message

Introduction

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

transform-fdt: command not found

or when using sudo you get the following error message

sudo: transform-fdt: command not found

Solutions to transform-fdt: command not found

How To Fix transform-fdt: command not found in Ubuntu / Debian / Kali Linux / Raspbian

In Ubuntu transform-fdt is provided by libplucene-perl package.

libplucene-perl is:

Plucene is a fully-featured and highly customizable search engine toolkit based on the Lucene API. (http://jakarta.apache.org/lucene)

It is not, in and of itself, a functional search engine - you are expected to subclass and tie all the pieces together to suit your own needs. The synopsis above gives a rough indication of how to use the engine in simple cases. See Plucene::Simple for one example of tying it all together.

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

sudo apt-get -y install libplucene-perl

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

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

sudo apt -y install libplucene-perl

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

sudo aptitude install libplucene-perl

Summary

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