tilix command not found
In this troubleshooting guide we learn how to fix tilix command not found error message
Introduction
When you run more command in linux terminal / console, you get the following error message
tilix: command not found
or when using sudo you get the following error message
sudo: tilix: command not found
Solutions to tilix: command not found
How To Fix tilix: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu tilix is provided by tilix package.
tilix is:
Tilix is a feature-rich tiling terminal emulator following the GNOME human interface design guidelines. Its many features include:
- Layout terminals in any fashion by splitting them horizontally or vertically.
- Terminals can be re-arranged using drag and drop both within and between windows.
- Terminals can be detached into a new window via drag and drop.
- Input can be synchronized between terminals so commands typed in one terminal are replicated to the others.
- Supports notifications when processes are completed out of view.
To fix this problem, we can install more using the command below.
sudo apt-get -y install tilix
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install tilix.
sudo apt -y install tilix
Or if you have aptitude installed you can use the following command.
sudo aptitude install tilix
Summary
In this tutorial we learn how to fix tilix command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.