td command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
td: command not found
or when using sudo you get the following error message
sudo: td: command not found
Solutions to td: command not found
How To Fix td: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu td is provided by textdraw package.
textdraw is:
Textdraw (td) is a small utility that allows do draw (ASCII-based) line-, rectangle-, ellipse- and text-objects with copy/paste/move features.
It completes existing console-based software to a ’textbased only office' and offers a simple and easy way to draw ascii graphics for documentations, presentations, mails and much more.
To fix this problem, we can install more using the command below.
sudo apt-get -y install textdraw
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install textdraw.
sudo apt -y install textdraw
Or if you have aptitude installed you can use the following command.
sudo aptitude install textdraw
Summary
In this tutorial we learn how to fix td command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.