Linux: Install graphical user interface
Choosing the distribution is the most important part for those who want to optimize Linux for old computers, but also on new ones for more power, for those who have chosen the distribution or do not want to change it, the second thing to evaluate in order of importance is the graphical user interface GUI
This remains active at all times of use and will draw the appearance of our system, this makes it a potential bottleneck in scenarios with limited resources
Choosing the X window graphical user interface
Also this choice, weighs heavily on the performance of the computer, most of the computing power is used to run this graphical environment, let's see what may be the best solutions for a dated PC:
- Flux box, icewm: They are really minimal interfaces, if you are brave and have a very dated computer they are the choice for you
- LXDE: It is a well made, light and minimal but easy to use graphical user interface without too many compromises
- XFCE: "Big sister" of LXDE, heavier but offers some conveniences not found on its predecessor, you can also try Mate or Cinnamon, used in the very popular Linux Mint
- Gnome, KDE:These are the classic interfaces, they offer the most functionality, but they certainly pay the brunt of their completeness
In the gallery above you can see screenshots of these six GUIs to get an idea of what they may look like
In case you don't need it you can not install it, on Linux servers it is usually not used
Install GUI
In Debian and Ubuntu
In Debian and derivatives such as Ubuntu it is sufficient
# apt install kde-plasma-desktop
# apt install gnome-session
# apt install cinnamon
# apt install xfce4
# apt install fluxbox
# apt install lxde
# apt install icewm
In AlmaLinux, Rocky Linux, and RedHat derivatives:
We enable the necessary repositories
# dnf install epel-release -y
# dnf config-manager --set-enabled crb
Install the chosen interface
# dnf groupinstall "KDE"
# dnf groupinstall "Gnome"
# dnf install cinnamon
# dnf groupinstall "Xfce"
# dnf install fluxbox
# dnf install icewm
.