[root@j~]# startx

Parseerror on line 6 of section ServerLayout in file /etc/X11/xorg.conf

        This section must have an Identifierline.

Fatalserver error:

noscreens found

(EE)Please also check the log file at "/var/log/Xorg.0.log" foradditional information.

(EE)

Serverterminated with error (1). Closing log file.

givingup.

xinit:  Connection refused (errno 111):  unable to connect to X server

xinit:  No such process (errno 3):  Server error.

[root@j~]# cat /var/log/Xorg.0.log

[   889.354] Parse error on line 6 of sectionServerLayout in file /etc/X11/xorg.conf

        This section must have an Identifierline

#缺少一个Identifier的标识行

[   889.354] (EE) Problem parsing the configfile

[   889.354] (EE) Error parsing the config file

解决过程:

[root@j~]# cd /etc/X11/

[root@j~]# cp -a xorg.conf xorg.conf.bak

[root@j~]# vim xorg.conf   添加一个标识行

Section "ServerLayout"
    Identifier     "Default Layout"
    InputDevice    "Keyboard0" "CoreKeyboard"
EndSection

Section "InputDevice"

# Keyboard added by system-config-keyboard
        Identifier  "Keyboard0"
        Driver      "kbd"
        Option      "XkbModel" "pc105+inet"
        Option      "XkbLayout" "us"
EndSection

Section "Device"
        Identifier  "Videocard0"
        Driver      "vesa"
EndSection

 [root@j~]# startx

[root@j~]# reboot