glogg command not found

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

Introduction

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

glogg: command not found

or when using sudo you get the following error message

sudo: glogg: command not found

Solutions to glogg: command not found

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

In Ubuntu glogg is provided by glogg package.

glogg is:

glogg is a multi-platform GUI application to browse and search through long or complex log files. It is designed with programmers and system administrators in mind and can be seen as a graphical, interactive combination of grep and less.

Main features include:

  • Accept egrep regular expression to search or filter the log.
  • Interactively display results of the search in a second, filtered window.
  • Colorize the log and the search results.
  • Read the file directly from disk, without loading it into memory.
  • Happily handle big (>4 GiB) files.
  • Read UTF-8 and ISO-8859-1 encoded files.
  • Follow a log in real-time as it is written to disk.
  • Allow one to insert marks in the logs to interesting lines.
  • Support less/vim like keyboard commands to move around the file.

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

sudo apt-get -y install glogg

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

You can also use apt command to install glogg.

sudo apt -y install glogg

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

sudo aptitude install glogg

Summary

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