To install XFCE on Fedora Server 41, follow these steps:
First, ensure your system is up to date. Open your terminal and run:
sudo dnf update
You can install XFCE using the dnf
package manager. Execute the following command:
sudo dnf groupinstall "Xfce"
If you want to start XFCE automatically on boot, you need a display manager. LightDM is a lightweight display manager that works well with XFCE. You can install it with the following command:
sudo dnf install lightdm lightdm-gtk
After installing LightDM, enable it to start on boot:
sudo systemctl enable lightdm
To set LightDM as the default display manager, run:
sudo systemctl set-default graphical.target
Finally, reboot your server:
sudo reboot
multi-user.target
:sudo systemctl set-default multi-user.target
By following these steps, you should successfully have XFCE installed and running on your Fedora Server 41. Enjoy your new desktop environment!