How To Install magnus on Kali Linux
Introduction
In this tutorial we learn how to install magnus
on Kali Linux.
What is magnus
magnus is:
Magnus is a simple screen magnifying glass. It nicely integrates with X11 desktops like MATE or Xfce (probably with others not named here, too).
Visually impaired users may find this tool helpful for zooming into certain screen areas in order to improve readability/visibilty of fonts, icons and other data.
There are three methods to install magnus
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 magnus Using apt-get
Update apt database with apt-get
using the following command.
sudo apt-get update
After updating apt database, We can install magnus
using apt-get
by running the following command:
sudo apt-get -y install magnus
Install magnus Using apt
Update apt database with apt
using the following command.
sudo apt update
After updating apt database, We can install magnus
using apt
by running the following command:
sudo apt -y install magnus
Install magnus 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 update
After updating apt database, We can install magnus
using aptitude
by running the following command:
sudo aptitude -y install magnus
How To Uninstall magnus on Kali Linux
To uninstall only the magnus
package we can use the following command:
sudo apt-get remove magnus
Uninstall magnus And Its Dependencies
To uninstall magnus
and its dependencies that are no longer needed by Kali Linux, we can use the command below:
sudo apt-get -y autoremove magnus
Remove magnus Configurations and Data
To remove magnus
configuration and data from Kali Linux we can use the following command:
sudo apt-get -y purge magnus
Remove magnus configuration, data, and all of its dependencies
We can use the following command to remove magnus
configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge magnus
Dependencies
magnus have the following dependencies:
- gir1.2-gdkpixbuf-2.0
- gir1.2-glib-2.0
- gir1.2-gtk-3.0
- gir1.2-keybinder-3.0
- python3
- python3-gi
- python3-setproctitle
- python3-pkg-resources
- python3
References
Summary
In this tutorial we learn how to install magnus
package on Kali Linux using different package management tools: apt
, apt-get
and aptitude
.