Advertisement
kijato

Xorg.conf - intel & nouveau Multihead v1

Jan 10th, 2020
3,176
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. #
  2. # Kiindulási állapot:
  3. #   xorg.conf -> https://pastebin.com/9nz9Lz7e
  4. #   X.org.0.log -> https://pastebin.com/ZLQkAYBt
  5. #
  6.  
  7. Section "ServerLayout"
  8.     Identifier     "X.org Configured"
  9.     Screen      0  "Screen0" 0 0
  10.     Screen      1  "Screen1" RightOf "Screen0"
  11.     InputDevice    "Mouse0" "CorePointer"
  12.     InputDevice    "Keyboard0" "CoreKeyboard"
  13. EndSection
  14.  
  15. Section "InputDevice"
  16.     Identifier  "Keyboard0"
  17.     Driver      "kbd"
  18. EndSection
  19.  
  20. Section "InputDevice"
  21.     Identifier  "Mouse0"
  22.     Driver      "mouse"
  23.     Option      "Protocol" "auto"
  24.     Option      "Device" "/dev/input/mice"
  25.     Option      "ZAxisMapping" "4 5 6 7"
  26. EndSection
  27.  
  28. Section "Monitor"
  29.     Identifier   "Monitor0"
  30.     VendorName   "Monitor Vendor"
  31.     ModelName    "Monitor Model"
  32. EndSection
  33.  
  34. Section "Monitor"
  35.     Identifier   "Monitor1"
  36.     VendorName   "Monitor Vendor"
  37.     ModelName    "Monitor Model"
  38.     Option       "RightOf" "Monitor0"
  39. EndSection
  40.  
  41. Section "Device"
  42.     Identifier  "Card0"
  43.     Driver      "intel"
  44.     BusID       "PCI:0:2:0"
  45.     Option      "Monitor-eDP1" "Monitor0"
  46.     Option      "Monitor-VIRTUAL1" "Monitor1"
  47. EndSection
  48.  
  49. Section "Device"
  50.     Identifier  "Card1"
  51.     Driver      "nouveau"
  52.     BusID       "PCI:1:0:0"
  53. EndSection
  54.  
  55. Section "Screen"
  56.     Identifier "Screen0"
  57.     Device     "Card0"
  58.     Monitor    "Monitor0"
  59. EndSection
  60.  
  61. Section "Screen"
  62.     Identifier "Screen1"
  63.     Device     "Card1"
  64.     # Monitor    "Monitor1"
  65. EndSection
  66.  
  67. #
  68. # A fenti konfigurációs fájl naplója: https://pastebin.com/Zn9BJ8fA
  69. # A napló releváns részei: https://pastebin.com/8xJN0UQJ
  70. #
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement