quasselclient command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
quasselclient: command not found
or when using sudo you get the following error message
sudo: quasselclient: command not found
Solutions to quasselclient: command not found
How To Fix quasselclient: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu quasselclient is provided by quassel-client package.
quassel-client is:
Quassel is a modern, cross-platform, distributed IRC client, meaning that one or more clients can attach to and detach from the central core. It’s much like the popular combination of screen and a text-based IRC client such as WeeChat or irssi, but graphical.
This package provides only the client component.
To fix this problem, we can install more using the command below.
sudo apt-get -y install quassel-client
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install quassel-client.
sudo apt -y install quassel-client
Or if you have aptitude installed you can use the following command.
sudo aptitude install quassel-client
Summary
In this tutorial we learn how to fix quasselclient command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.