Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
$ sudo nvidia-xconfig --query-gpu-info # Take note of the value of "PCI BusID"
$ sudo nvidia-xconfig --busid="<busid from before>" --allow-empty-initial-configuraion

# This will generate a xorg.conf that almost works. In order to _actually_ make it work, open /etc/X11/xorg.conf in your favourite editor and do the following:
- Remove the entire Section "Monitor" block
- In the Section "Screen" block remove the following:
    Option         "UseDisplayDevice" "none"
    Monitor        "Monitor0"
    SubSection     "Display"
        Depth       24
    EndSubSection
- In the Section "Screen" block, add:
    Option         "AllowEmptyInitialConfiguration" "True"configuration


Ensure that the X server starts on boot, and only when doing an interactive logon

...