expireGititCache command not found

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

Introduction

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

expireGititCache: command not found

or when using sudo you get the following error message

sudo: expireGititCache: command not found

Solutions to expireGititCache: command not found

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

In Ubuntu expireGititCache is provided by gitit package.

gitit is:

Gitit is a wiki backed by a git or darcs filestore. Pages and uploaded files can be modified either directly via the VCS’s command-line tools or through the wiki’s web interface. Pandoc is used for markup processing, so pages may be written in (extended) markdown, reStructuredText, LaTeX, HTML, or literate Haskell, and exported in ten different formats, including LaTeX, ConTeXt, DocBook, RTF, OpenOffice ODT, and MediaWiki markup.

Other features include

  • plugins: dynamically loaded page transformations written in Haskell;
  • categories;
  • support for Unicode;
  • TeX math using texmath;
  • syntax highlighting of source code files and code snippets using highlighting-kate;
  • wiki pages can be viewed as slide shows;
  • caching;
  • Atom feeds (site-wide and per-page);
  • a library, Network.Gitit, that makes it simple to include a gitit wiki in any happstack application;
  • pages can be written directly in literate Haskell.

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

sudo apt-get -y install gitit

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

You can also use apt command to install gitit.

sudo apt -y install gitit

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

sudo aptitude install gitit

Summary

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