Nvidia Driver Quadro P2000 on Redhat 8

Hi,

We are trying to install the driver for Nvidia Quadro P2000 on Redhat 8.2
After several unsuccessful attempts following some instructions like that link : https://linuxconfig.org/redhat-8-nvidia-driver-install-guide
We followed this link sent from Redhat support : How to install Nvidia CUDA on RHEL 8 - Red Hat Customer Portal
Now we can get a GUI by running startx command but when restart the server it stops at boot as you can see :

There is this error in Xorg.0.conf :

[ 331.307] (II) NVIDIA(0): ACPI: failed to connect to the ACPI event daemon; t he daemon
[ 331.307] (II) NVIDIA(0): may not be running or the “AcpidSocketPath” X
[ 331.307] (II) NVIDIA(0): configuration option may not be set correctly. When the
[ 331.307] (II) NVIDIA(0): ACPI event daemon is available, the NVIDIA X dr iver will
[ 331.307] (II) NVIDIA(0): try to use it to receive ACPI event notificatio ns. For
[ 331.307] (II) NVIDIA(0): details, please see the “ConnectToAcpid” and
[ 331.307] (II) NVIDIA(0): “AcpidSocketPath” X configuration options in Ap pendix B: X
[ 331.307] (II) NVIDIA(0): Config Options in the README.
[ 331.323] (EE)
[ 331.323] (EE) Backtrace:
[ 331.323] (EE) 0: /usr/libexec/Xorg (xorg_backtrace+0x7d) [0x55ca9b9ed3ad]
[ 331.323] (EE) 1: /usr/libexec/Xorg (0x55ca9b835000+0x1bc15d) [0x55ca9b9f115d ]
[ 331.323] (EE) 2: /lib64/libpthread.so.0 (0x7f9f56da9000+0x12dd0) [0x7f9f56db bdd0]
[ 331.323] (EE) 3: /usr/lib64/xorg/modules/drivers/nvidia_drv.so (0x7f9f5293c0 00+0xbd0d2) [0x7f9f529f90d2]
[ 331.323] (EE) 4: /usr/lib64/xorg/modules/drivers/nvidia_drv.so (0x7f9f5293c0 00+0xabf78) [0x7f9f529e7f78]
[ 331.323] (EE) 5: /usr/lib64/xorg/modules/drivers/nvidia_drv.so (0x7f9f5293c0 00+0x75373) [0x7f9f529b1373]
[ 331.323] (EE) 6: /usr/lib64/xorg/modules/drivers/nvidia_drv.so (0x7f9f5293c0 00+0x4db7de) [0x7f9f52e177de]
[ 331.323] (EE)
[ 331.323] (EE) Segmentation fault at address 0x55ca9dc26000
[ 331.323] (EE)
Fatal server error:
[ 331.323] (EE) Caught signal 11 (Segmentation fault). Server aborting
[ 331.323] (EE)
[ 331.323] (EE)
Please consult the The X.Org Foundation support

for help.
[ 331.323] (EE) Please also check the log file at “/var/log/Xorg.0.log” for ad ditional information.
[ 331.323] (EE)
[ 331.350] (EE) Server terminated with error (1). Closing log file.

Thanks

The symptom is like you don’t have a valid xorg.conf file…
But please run nvidia-bug-report.sh as root and attach the resulting nvidia-bug-report.log.gz file.
We need to read the whole error log to figure out the main problems.

Hi,

Thanks for your answer.
You can check the file below
nvidia-bug-report.log.gz (1.2 MB)

test this xorg.conf file @copwell

Section "ServerLayout"
    Identifier     "Layout0"
    Screen      0  "Screen0"
    InputDevice    "Keyboard0" "CoreKeyboard"
    InputDevice    "Mouse0" "CorePointer"
    Inactive       "InactiveDevice1"
EndSection

Section "Files"
EndSection

Section "InputDevice"
    # generated from default
    Identifier     "Mouse0"
    Driver         "mouse"
    Option         "Protocol" "auto"
    Option         "Device" "/dev/input/mice"
    Option         "Emulate3Buttons" "no"
    Option         "ZAxisMapping" "4 5"
EndSection

Section "InputDevice"
    # generated from default
    Identifier     "Keyboard0"
    Driver         "kbd"
EndSection

Section "Monitor"
    Identifier     "Monitor0"
    VendorName     "Unknown"
    ModelName      "Unknown"
    Option         "DPMS"
EndSection

Section "Device"
    Identifier     "Device0"
    Driver         "nvidia"
    VendorName     "NVIDIA Corporation"
    BusID          "PCI:59@0:0:0"
EndSection

Section "Device"
    Identifier     "InactiveDevice1"
    Driver         "matrox"
    VendorName     "Matrox Electronics"
    BusID          "PCI:3@0:0:0"
EndSection

Section "Screen"
    Identifier     "Screen0"
    Device         "Device0"
    Monitor        "Monitor0"
    DefaultDepth    24
    SubSection     "Display"
        Depth       24
    EndSubSection
EndSection
1 Like

Thank you very much it works !

1 Like

glad to heard that @copwell