CentOS 6.5 安装Nvidia驱动后出现"no screens found "错误

参考官网文档

http://cn.download.nvidia.com/XFree86/Linux-x86_64/280.13/README/editxconfig.html

进入更改文档:

vi /etc/X11/xorg.conf

Remove the line:

      Driver "nv"
  (or Driver "vesa")
  (or Driver "fbdev")

and replace it with the line:

    Driver "nvidia"

Remove the following lines:

    Load "dri"
    Load "GLCore"

In the Module section of the file, add the line (if it does not already exist):

    Load "glx"

If the X config file does not have a Module section, you can safely skip the last step if the X server installed on your system is an X.Org X server or an XFree86 X release version 4.4.0 or greater. If you are using an older XFree86 X server, add the following to your X config file:

Section "Module"
    Load "extmod"
    Load "dbe"
    Load "type1"
    Load "freetype"
    Load "glx"
EndSection
原文地址:https://www.cnblogs.com/tswcypy/p/3989945.html