GUI not working in RHEL7/CentOS7
Graphical target not workinh and GUI not working. Some times when we started server with GUI mode it will not work and only multi-user target will work in command prompt. To veryfy this use below command. # startx GUI will work till startx session persists. This menas legacy display login manager for the X Window System is not working properly and graphical login screen, shown shortly after boot up, log out, and when user-switching is also not working. This is due to gdm package has replaced xorg-x11-xdm in RHEL 7. Verify "gdm" package status: Run below command: # rpm -Va &> /tmp/$(hostname)-$(date +"%Y-%m-%d-%H-%M-%S")-rpmva.txt Download the generated file in /tmp/ nad open in notepad++ editor. Search for "gdm". You can find that "missing /run/gdm" How to Fix: 1- Reinstall the gdm package on your system: # yum reinstall gdm 2- Reboot the system in GUi mode and check the status If you still face the issue then, l...