How To Install terminus on Kali Linux
Introduction
In this tutorial we learn how to install terminus on Kali Linux.
What is terminus
terminus is:
A new-generation (post-Guake) terminal for X11 and Wayland featuring a hot-key Quake-console-like drop-down mode. Other features include a scroll-back buffer, multiple tabs, split screen both horizontal and vertical, and the usual compatibility features.
There are three methods to install terminus on Kali Linux. We can use apt-get, apt and aptitude. In the following sections we will describe each method. You can choose one of them.
Install terminus Using apt-get
Update apt database with apt-get using the following command.
sudo apt-get updateAfter updating apt database, We can install terminus using apt-get by running the following command:
sudo apt-get -y install terminusInstall terminus Using apt
Update apt database with apt using the following command.
sudo apt updateAfter updating apt database, We can install terminus using apt by running the following command:
sudo apt -y install terminusInstall terminus Using aptitude
If you want to follow this method, you might need to install aptitude on Kali Linux first since aptitude is usually not installed by default on Kali Linux. Update apt database with aptitude using the following command.
sudo aptitude updateAfter updating apt database, We can install terminus using aptitude by running the following command:
sudo aptitude -y install terminusHow To Uninstall terminus on Kali Linux
To uninstall only the terminus package we can use the following command:
sudo apt-get remove terminusUninstall terminus And Its Dependencies
To uninstall terminus and its dependencies that are no longer needed by Kali Linux, we can use the command below:
sudo apt-get -y autoremove terminusRemove terminus Configurations and Data
To remove terminus configuration and data from Kali Linux we can use the following command:
sudo apt-get -y purge terminusRemove terminus configuration, data, and all of its dependencies
We can use the following command to remove terminus configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge terminusDependencies
terminus have the following dependencies:
- libc6
- libcairo2
- libgee-0.8-2
- libglib2.0-0
- libgtk-3-0
- libkeybinder-3.0-0
- libpango-1.0-0
- libvte-2.91-0
- dconf-gsettings-backend
- libglib2.0-bin
References
Summary
In this tutorial we learn how to install terminus package on Kali Linux using different package management tools: apt, apt-get and aptitude.