sic command not found

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

Introduction

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

sic: command not found

or when using sudo you get the following error message

sudo: sic: command not found

Solutions to sic: command not found

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

In Ubuntu sic is provided by sic package.

sic is:

sic is an extremely fast, small and simple irc client. It reads commands from standard input and prints all server output to standard output. It also multiplexes all channel traffic into one output. That way you don’t have to switch different channel buffers. So that’s actually a feature.

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

sudo apt-get -y install sic

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

You can also use apt command to install sic.

sudo apt -y install sic

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

sudo aptitude install sic

Summary

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