ddtc command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
ddtc: command not found
or when using sudo you get the following error message
sudo: ddtc: command not found
Solutions to ddtc: command not found
How To Fix ddtc: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu ddtc is provided by ddtc package.
ddtc is:
ddtc stands for Debian Description Translation Client. It’s a Perl script to help both translators and reviewers to deal with ddts mails. It parses mails from the ddts, splits them into individual package files, sends translations, reviews and patches buggy translations.
Supports only package description (pdesc) for the moment.
To fix this problem, we can install more using the command below.
sudo apt-get -y install ddtc
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install ddtc.
sudo apt -y install ddtc
Or if you have aptitude installed you can use the following command.
sudo aptitude install ddtc
Summary
In this tutorial we learn how to fix ddtc command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.