I would like to boot my Linux Centos 7 on Graphic User Interface login page but it doesn't. I have already installed GNOME DESKTOP. I did:
systemctl set-default graphical.target
my grub file is configured like that:
GRUB_TIMEOUT=5
GRUB_DISTRIBUTOR="$(sed 's, release .*$,,g' /etc/system-release)"
GRUB_DEFAULT=saved
GRUB_DISABLE_SUBMENU=true
GRUB_TERMINAL_OUTPUT="console"
GRUB_CMDLINE_LINUX="crashkernel=auto rd.lvm.lv=centos/root rd.lvm.lv=centos/swap rhgb quiet rd.driver.blacklist=nouveau nouveau.modeset=0 nouveau.modeset=0 rd.driver.blacklist=nouveau plymouth.ignore-udev"
GRUB_DISABLE_RECOVERY="true"
grep EE /var/log/Xorg.0.log gives me:
(WW) warning, (EE) error, (NI) not implemented, (??) unknown.
[ 82.640] (II) Initializing extension MIT-SCREEN-SAVER
[ 83.213] (EE) Error loading keymap /tmp/server-0.xkm
[ 83.213] (EE) XKB: Failed to load keymap. Loading default keymap instead.
Do you know how to fix this issue?
systemdand the journal:systemctl --failed,systemctl statusfor the failed units, if any;journalctl -u graphical.target,journalctl -p 0..4for log entries from priority 0 (emergency) up to 4 (warnings) (likely only about the last boot, since the journal is not persistent by default). You should also be able to look for errors in/var/log/messages. Please, edit your question if you find something. – fra-san Dec 21 '18 at 16:45systemctl isolate graphical.target(and its messages in the journal withjournalctl). Issued on the command line, it will start thegraphical.targetunit and its dependencies. – fra-san Dec 21 '18 at 16:59gdmor another login manager? – tink Dec 21 '18 at 17:13Xorgerror. Rather, sincesystemctlshows no failed units, it may just depend on how you installed GNOME Desktop (as tink suggested). For instance, if you issuedyum install gnome-desktop, you got no display manager - the component responsible to start the desktop environment. The easy way to install everything should be to runyum -y groups install "GNOME Desktop". Have you come across, for instance, this question? – fra-san Jan 08 '19 at 10:09