How To Install xscreensaver-gl on Kali Linux
Introduction
In this tutorial we learn how to install xscreensaver-gl on Kali Linux.
What is xscreensaver-gl
xscreensaver-gl is:
XScreenSaver is a modular screen saver and locker for X11, containing more than 200 screen savers.
This package contains a small selection of 3D (OpenGL) screen saver modules from the xscreensaver collection. This package can be used by xscreensaver and also some other screensaver engines.
This is the set of GL screensavers shipped by default: antinspect, antspotlight, atunnel, beats, blinkbox, bubble3d, circuit, cityring, covid19, crumbler, cubestack, cubestorm, cubetwist, discoball, dymaxionmap, endgame, energystream, engine, esper, etruscanvenus, flipflop, flipscreen3d, flyingtoasters, gears, geodesic, geodesicgears, gflux, gibson, glblur, glcells, gleidescope, glknots, glmatrix, glschool, glslideshow, glsnake, gltext, headroom, hexstrut, hydrostat, hypertorus, jigglypuff, kaleidocycle, lavalite, lockward, maze3d, mirrorblob, moebius, moebiusgears, molecule, morph3d, peepers, pipes, polyhedra, polytopes, projectiveplane, pulsar, quasicrystal, queens, raverhoop, razzledazzle, romanboy, sierpinski3d, sonar, sphereeversion, spheremonics, splitflap, splodesic, stonerview, superquadrics, topblock, unicrud, vigilance, voronoi, winduprobot.
More display modes can be found in the xscreensaver-data, xscreensaver-data-extra and xscreensaver-gl-extra packages.
There are three methods to install xscreensaver-gl 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 xscreensaver-gl Using apt-get
Update apt database with apt-get using the following command.
sudo apt-get updateAfter updating apt database, We can install xscreensaver-gl using apt-get by running the following command:
sudo apt-get -y install xscreensaver-glInstall xscreensaver-gl Using apt
Update apt database with apt using the following command.
sudo apt updateAfter updating apt database, We can install xscreensaver-gl using apt by running the following command:
sudo apt -y install xscreensaver-glInstall xscreensaver-gl 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 xscreensaver-gl using aptitude by running the following command:
sudo aptitude -y install xscreensaver-glHow To Uninstall xscreensaver-gl on Kali Linux
To uninstall only the xscreensaver-gl package we can use the following command:
sudo apt-get remove xscreensaver-glUninstall xscreensaver-gl And Its Dependencies
To uninstall xscreensaver-gl and its dependencies that are no longer needed by Kali Linux, we can use the command below:
sudo apt-get -y autoremove xscreensaver-glRemove xscreensaver-gl Configurations and Data
To remove xscreensaver-gl configuration and data from Kali Linux we can use the following command:
sudo apt-get -y purge xscreensaver-glRemove xscreensaver-gl configuration, data, and all of its dependencies
We can use the following command to remove xscreensaver-gl configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge xscreensaver-glDependencies
xscreensaver-gl have the following dependencies:
- libcap2-bin
- libc6
- libgdk-pixbuf-2.0-0
- libgdk-pixbuf-xlib-2.0-0
- libgl1
- libglib2.0-0
- libglu1-mesa
- libx11-6
- libxext6
- libxft2
- libxmu6
- libxt6
References
Summary
In this tutorial we learn how to install xscreensaver-gl package on Kali Linux using different package management tools: apt, apt-get and aptitude.