How To Install lugaru on Kali Linux
Introduction
In this tutorial we learn how to install lugaru
on Kali Linux.
What is lugaru
lugaru is:
Lugaru (pronounced Loo-GAH-roo) is a cross-platform third-person action game. The main character, Turner, is an anthropomorphic rebel bunny rabbit with impressive combat skills. In his quest to find those responsible for slaughtering his village, he uncovers a far-reaching conspiracy involving the corrupt leaders of the rabbit republic and the starving wolves from a nearby den. Turner takes it upon himself to fight against their plot and save his fellow rabbits from slavery.
Lugaru HD is developed by the OSS Lugaru project and is based on the original Lugaru HD by Wolfire Games.
There are three methods to install lugaru
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 lugaru Using apt-get
Update apt database with apt-get
using the following command.
sudo apt-get update
After updating apt database, We can install lugaru
using apt-get
by running the following command:
sudo apt-get -y install lugaru
Install lugaru Using apt
Update apt database with apt
using the following command.
sudo apt update
After updating apt database, We can install lugaru
using apt
by running the following command:
sudo apt -y install lugaru
Install lugaru 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 lugaru
using aptitude
by running the following command:
sudo aptitude -y install lugaru
How To Uninstall lugaru on Kali Linux
To uninstall only the lugaru
package we can use the following command:
sudo apt-get remove lugaru
Uninstall lugaru And Its Dependencies
To uninstall lugaru
and its dependencies that are no longer needed by Kali Linux, we can use the command below:
sudo apt-get -y autoremove lugaru
Remove lugaru Configurations and Data
To remove lugaru
configuration and data from Kali Linux we can use the following command:
sudo apt-get -y purge lugaru
Remove lugaru configuration, data, and all of its dependencies
We can use the following command to remove lugaru
configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge lugaru
Dependencies
lugaru have the following dependencies:
- lugaru-data
- libc6
- libgcc-s1
- libgl1
- libglu1-mesa
- libjpeg62-turbo
- libopenal1
- libpng16-16
- libsdl2-2.0-0
- libstdc++6
- libvorbisfile3
References
Summary
In this tutorial we learn how to install lugaru
package on Kali Linux using different package management tools: apt
, apt-get
and aptitude
.