ldmtool command not found

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

Introduction

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

ldmtool: command not found

or when using sudo you get the following error message

sudo: ldmtool: command not found

Solutions to ldmtool: command not found

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

In Ubuntu ldmtool is provided by ldmtool package.

ldmtool is:

ldmtool exposes libldm’s functionality as a command-line tool.

libldm is a library for managing Microsoft Windows dynamic disks, which use Microsoft’s LDM metadata. It can inspect them, and also create and remove device-mapper block devices which can be mounted.

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

sudo apt-get -y install ldmtool

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

You can also use apt command to install ldmtool.

sudo apt -y install ldmtool

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

sudo aptitude install ldmtool

Summary

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