qosmic command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
qosmic: command not found
or when using sudo you get the following error message
sudo: qosmic: command not found
Solutions to qosmic: command not found
How To Fix qosmic: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu qosmic is provided by qosmic package.
qosmic is:
Graphical interface (Qt) for creating, editing, and rendering flam3 IFS fractal flame images, which can be saved as png files.
The theory of fractal flames is described here https://flam3.com/flame_draves.pdf
To fix this problem, we can install more using the command below.
sudo apt-get -y install qosmic
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install qosmic.
sudo apt -y install qosmic
Or if you have aptitude installed you can use the following command.
sudo aptitude install qosmic
Summary
In this tutorial we learn how to fix qosmic command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.