titanium-starter command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
titanium-starter: command not found
or when using sudo you get the following error message
sudo: titanium-starter: command not found
Solutions to titanium-starter: command not found
How To Fix titanium-starter: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu titanium-starter is provided by libmodule-starter-plugin-cgiapp-perl package.
libmodule-starter-plugin-cgiapp-perl is:
This is a plugin for Module::Starter that builds you a skeleton CGI::Application module with all the extra files needed to package it for CPAN. You can customize the output using HTML::Template.
To fix this problem, we can install more using the command below.
sudo apt-get -y install libmodule-starter-plugin-cgiapp-perl
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install libmodule-starter-plugin-cgiapp-perl.
sudo apt -y install libmodule-starter-plugin-cgiapp-perl
Or if you have aptitude installed you can use the following command.
sudo aptitude install libmodule-starter-plugin-cgiapp-perl
Summary
In this tutorial we learn how to fix titanium-starter command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.