How To Install bumblebee on Kali Linux
Introduction
In this tutorial we learn how to install bumblebee on Kali Linux.
What is bumblebee
bumblebee is:
Bumblebee is an effort to make NVIDIA Optimus enabled laptops work in GNU/Linux systems. These laptops are built in such a way that the NVIDIA graphics card can be used on demand so that battery life is improved and temperature is kept low.
It disables the discrete graphics card if no client is detected, and starts an X server making use of NVIDIA card if requested then let software GL implementations (such as VirtualGL) copy frames to the visible display that runs on the integrated graphics. The ability to use discrete graphics depends on the driver: open source nouveau and proprietary nvidia.
There are three methods to install bumblebee 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 bumblebee Using apt-get
Update apt database with apt-get using the following command.
sudo apt-get updateAfter updating apt database, We can install bumblebee using apt-get by running the following command:
sudo apt-get -y install bumblebeeInstall bumblebee Using apt
Update apt database with apt using the following command.
sudo apt updateAfter updating apt database, We can install bumblebee using apt by running the following command:
sudo apt -y install bumblebeeInstall bumblebee 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 bumblebee using aptitude by running the following command:
sudo aptitude -y install bumblebeeHow To Uninstall bumblebee on Kali Linux
To uninstall only the bumblebee package we can use the following command:
sudo apt-get remove bumblebeeUninstall bumblebee And Its Dependencies
To uninstall bumblebee and its dependencies that are no longer needed by Kali Linux, we can use the command below:
sudo apt-get -y autoremove bumblebeeRemove bumblebee Configurations and Data
To remove bumblebee configuration and data from Kali Linux we can use the following command:
sudo apt-get -y purge bumblebeeRemove bumblebee configuration, data, and all of its dependencies
We can use the following command to remove bumblebee configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge bumblebeeDependencies
bumblebee have the following dependencies:
References
Summary
In this tutorial we learn how to install bumblebee package on Kali Linux using different package management tools: apt, apt-get and aptitude.