sdop command not found

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

Introduction

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

sdop: command not found

or when using sudo you get the following error message

sudo: sdop: command not found

Solutions to sdop: command not found

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

In Ubuntu sdop is provided by sdop package.

sdop is:

SDoP (Simple DocBook Processor) reads a Simplified DocBook XML file, processes it into typeset pages, and outputs the result as PostScript (which can easily be converted to a PDF). It is “simple” because it supports only a subset of DocBook, and also because it does not make use of a DTD or stylesheets or any other heavyweight apparatus. It is a single program. SDoP is used to format the Exim reference manual.

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

sudo apt-get -y install sdop

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

You can also use apt command to install sdop.

sudo apt -y install sdop

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

sudo aptitude install sdop

Summary

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