txt2pdbdoc command not found

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

Introduction

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

txt2pdbdoc: command not found

or when using sudo you get the following error message

sudo: txt2pdbdoc: command not found

Solutions to txt2pdbdoc: command not found

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

In Ubuntu txt2pdbdoc is provided by txt2pdbdoc package.

txt2pdbdoc is:

This utility converts plain text files (or HTML files) to the de facto PalmOS standard DOC format for use in document readers (such as “C Spot Run”) and editors (such as “ZDOC”). DOC files are compressed by default, and txt2pdbdoc can also convert DOC files back to plain text.

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

sudo apt-get -y install txt2pdbdoc

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

You can also use apt command to install txt2pdbdoc.

sudo apt -y install txt2pdbdoc

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

sudo aptitude install txt2pdbdoc

Summary

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