irclogserver command not found
In this troubleshooting guide we learn how to fix irclogserver command not found error message
Introduction
When you run more command in linux terminal / console, you get the following error message
irclogserver: command not found
or when using sudo you get the following error message
sudo: irclogserver: command not found
Solutions to irclogserver: command not found
How To Fix irclogserver: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu irclogserver is provided by irclog2html package.
irclog2html is:
Python scripts that converts IRC log files from several formats to coloured HTML.
Features include:
- XHTML & CSS output
- Unique, automatic nick colours (preserved across nick changes)
- URL highlighting
- Bookmarkable timestamps for each line
- Navigation links between daily log files
To fix this problem, we can install more using the command below.
sudo apt-get -y install irclog2html
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install irclog2html.
sudo apt -y install irclog2html
Or if you have aptitude installed you can use the following command.
sudo aptitude install irclog2html
Summary
In this tutorial we learn how to fix irclogserver command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.