tracd command not found

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

Introduction

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

tracd: command not found

or when using sudo you get the following error message

sudo: tracd: command not found

Solutions to tracd: command not found

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

In Ubuntu tracd is provided by trac package.

trac is:

Trac uses a minimalistic approach to web-based software project management. Its mission is to help developers write great software while staying out of the way. Trac should impose as little as possible on a team’s established development process and policies. It provides an interface to Subversion (or other version control systems), an integrated Wiki and convenient reporting facilities. Trac allows wiki markup in issue descriptions and commit messages, creating links and seamless references between bugs, tasks, changesets, files and wiki pages. A timeline shows all current and past project events in order, making the acquisition of an overview of the project and tracking progress very easy. The roadmap shows the road ahead, listing the upcoming milestones.

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

sudo apt-get -y install trac

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

You can also use apt command to install trac.

sudo apt -y install trac

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

sudo aptitude install trac

Summary

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