Is there a way to go from Kali light distro to full? Which packages do I need to install?
3 Answers
The sets of packages installed for the various flavours of Kali are defined in live-build-config
. In this instance you need to look at the set of packages in Kali light and packages in Kali full: the latter adds kali-linux-full
and kali-desktop-gnome
.
So to get all the utilities installed in Kali full:
sudo apt-get install kali-linux-full
If you want to install the GNOME 3 desktop used by default in Kali full:
sudo apt-get install kali-desktop-gnome
If you want to uninstall the XFCE desktop used by default in Kali light:
sudo apt-get purge kali-desktop-xfce
You can use the full set of utilities from the XFCE desktop, so you may want to try out the various possibilities before uninstalling anything.

- 434,908
According to this question the Light distro has a lighter desktop environment and fewer packages. To go to the 'full' one, I would guess you just apt-get install
the ones you need to use.
kali-desktop-xfce
. My personal preference at the moment is LXDE but there's nothing wrong with XFCE as an environment. I find LXDE and XFCE to be faster and just as capable as full Gnome or KDE. I don't want to spawn another instance of the desktop wars debate here, but play with them; find out which desktop works for you. – Skrrp Aug 12 '15 at 18:12