How To Install sen on Kali Linux
Introduction
In this tutorial we learn how to install sen on Kali Linux.
What is sen
sen is:
sen is a terminal user interface for docker engine:
- it can interactively manage your containers and images:
- manage? start, stop, restart, kill, delete,…
- you are able to inspect containers and images
- sen can fetch logs of containers and even stream logs real-time
- all buffers support searching and filtering
- sen receives real-time updates from docker when anything changes
- e.g. if you create a container in another terminal, sen will pick it up
- sen notifies you whenever something happens (and reports slow queries)
- supports a lot of vim-like keybindings (j, k, gg, /, …)
- there is a special buffer which display detailed info about images
- you can get interactive tree view of all images (equivalent of docker images –tree)
There are three methods to install sen 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 sen Using apt-get
Update apt database with apt-get using the following command.
sudo apt-get updateAfter updating apt database, We can install sen using apt-get by running the following command:
sudo apt-get -y install senInstall sen Using apt
Update apt database with apt using the following command.
sudo apt updateAfter updating apt database, We can install sen using apt by running the following command:
sudo apt -y install senInstall sen 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 sen using aptitude by running the following command:
sudo aptitude -y install senHow To Uninstall sen on Kali Linux
To uninstall only the sen package we can use the following command:
sudo apt-get remove senUninstall sen And Its Dependencies
To uninstall sen and its dependencies that are no longer needed by Kali Linux, we can use the command below:
sudo apt-get -y autoremove senRemove sen Configurations and Data
To remove sen configuration and data from Kali Linux we can use the following command:
sudo apt-get -y purge senRemove sen configuration, data, and all of its dependencies
We can use the following command to remove sen configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge senDependencies
sen have the following dependencies:
References
Summary
In this tutorial we learn how to install sen package on Kali Linux using different package management tools: apt, apt-get and aptitude.