porgball command not found

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

Introduction

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

porgball: command not found

or when using sudo you get the following error message

sudo: porgball: command not found

Solutions to porgball: command not found

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

In Ubuntu porgball is provided by porg package.

porg is:

Porg (formerly known as paco), is a program to aid management of software packages installed from source code.

After the installation of such packages, one is usually left with having no idea of what it was installed and where it all went, making it difficult to uninstall the package in the future. Porg was written to solve this problem in a quite simple fashion.

When installing a package from sources, porg wraps the install command (e.g. “make install”), and saves installation information into a its own flat-file text database.

This package is a complete replacement for the deprecated ‘paco’ package.

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

sudo apt-get -y install porg

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

You can also use apt command to install porg.

sudo apt -y install porg

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

sudo aptitude install porg

Summary

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