Facebook
From Sweet Bat, 3 Years ago, written in Plain Text.
Embed
Download Paste or View Raw
Hits: 188
  1. lspci|grep VGA
  2. 01:00.0 VGA compatible controller: NVIDIA Corporation TU104 [GeForce RTX 2080 SUPER] (rev a1)
  3.  
  4. xrandr --listproviders
  5. Providers: number : 1
  6. Provider 0: id: 0x1b8 cap: 0x1, Source Output crtcs: 4 outputs: 8 associated providers: 0 name:NVIDIA-0
  7.  
  8. vim xorg.conf
  9. # nvidia-settings: X configuration file generated by nvidia-settings
  10. # nvidia-settings:  version 450.66
  11.  
  12. Section "ServerLayout"
  13.     Identifier     "Layout0"
  14.     Screen      0  "Screen0" 0 0
  15.     InputDevice    "Keyboard0" "CoreKeyboard"
  16.     InputDevice    "Mouse0" "CorePointer"
  17.     Option         "Xinerama" "0"
  18. EndSection
  19.  
  20. Section "Files"
  21. EndSection
  22.  
  23. Section "Module"
  24.     Load           "dbe"
  25.     Load           "extmod"
  26.     Load           "type1"
  27.     Load           "freetype"
  28.     Load           "glx"
  29. EndSection
  30.  
  31. Section "InputDevice"
  32.     # generated from default
  33.     Identifier     "Mouse0"
  34.     Driver         "mouse"
  35.     Option         "Protocol" "auto"
  36.     Option         "Device" "/dev/input/mice"
  37.     Option         "Emulate3Buttons" "no"
  38.     Option         "ZAxisMapping" "4 5"
  39. EndSection
  40.  
  41. Section "InputDevice"
  42.     # generated from default
  43.     Identifier     "Keyboard0"
  44.     Driver         "kbd"
  45. EndSection
  46.  
  47. Section "Monitor"
  48.     # HorizSync source: edid, VertRefresh source: edid
  49.     Identifier     "Monitor0"
  50.     VendorName     "Unknown"
  51.     ModelName      "LG Electronics LG ULTRAWIDE"
  52.     HorizSync       90.0 - 90.0
  53.     VertRefresh     40.0 - 75.0
  54.     Option         "DPMS"
  55. EndSection
  56.  
  57. Section "Device"
  58.     Identifier     "Device0"
  59.     Driver         "nvidia"
  60.     VendorName     "NVIDIA Corporation"
  61.     BoardName      "GeForce RTX 2080 SUPER"
  62. EndSection
  63.  
  64. Section "Screen"
  65.     Identifier     "Screen0"
  66.     Device         "Device0"
  67.     Monitor        "Monitor0"
  68.     DefaultDepth    24
  69.     Option         "Stereo" "0"
  70.     Option         "nvidiaXineramaInfoOrder" "DFP-5"
  71.     Option         "metamodes" "DP-2: 2560x1080_75 +5120+0, HDMI-0: 2560x1080_75 +0+0, DP-4: 2560x1080_60 +2560+0"
  72.     Option         "SLI" "Off"
  73.     Option         "MultiGPU" "Off"
  74.     Option         "BaseMosaic" "off"
  75.     SubSection     "Display"
  76.         Depth       24
  77.     EndSubSection
  78. EndSection
  79.