bugzilla command not found

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

Introduction

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

bugzilla: command not found

or when using sudo you get the following error message

sudo: bugzilla: command not found

Solutions to bugzilla: command not found

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

In Ubuntu bugzilla is provided by bugzilla-cli package.

bugzilla-cli is:

bugzilla-cli is a command-line tool for interacting with Bugzilla instances from shell scripts. You can perform several tasks like creating new bugs, query and modifying existing bugs, attaching files or getting attachments, and getting info about the Bugzilla instance.

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

sudo apt-get -y install bugzilla-cli

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

You can also use apt command to install bugzilla-cli.

sudo apt -y install bugzilla-cli

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

sudo aptitude install bugzilla-cli

Summary

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