failed to initialize core devices

I have setup RHEL release 5.8 on my computer that I am turning into a Server. I have set up Trixbox, but i would like to also set up some other features for networking and for this I would like to get into X Windows. However every time I do I get "failed to initialise core devices".

OR

X wont start: Failed to initialize core devices.

I am getting an xorg "failed to initialize core devices" error when trying to startx 

after installing ATI drivers and configuring the card with "anti-config".

Have a look below error snap:-







Solution:-


Edit xorg.conf


[root@sujeet~]# vi /etc/X11/xorg.conf

if u have other server with same Linux OS than match both file & if any thing missing than change it.

Original xorg.conf file contained :

[root@sujeet]# cat /etc/X11/xorg.conf

# Xorg configuration created by pyxf86config

Section "ServerLayout"
        Identifier     "Default Layout"
        Screen      0  "Screen0" 0 0
        InputDevice    "Keyboard0" "CoreKeyboard"
EndSection

Section "InputDevice"
        Identifier  "Keyboard0"
        Driver      "kbd"
        Option      "XkbModel" "pc105"
        Option      "XkbLayout" "us"
EndSection

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

Section "Screen"
        Identifier "Screen0"
        Device     "Videocard0"
        DefaultDepth     24
        SubSection "Display"
                Viewport   0 0
                Depth     24
        EndSubSection
EndSection


Copy full file contained and past on your error OS platform.
Save it after that restart your OS.

I hope your issue got resolved. 





No comments:

How to add a datafile to a bigfile tablespace in Oracle 23ai Database.

  Syntax for Bigfile Tablespace: SQL > ALTER TABLESPACE tablespace_name ADD DATAFILE SIZE 10G AUTOEXTEND ON NEXT 1G MAXSIZE UNLIMITED; Ho...