1.  
  2. cat /root/xorg.conf.new
  3. Section "ServerLayout"
  4. Identifier "X.org Configured"
  5. Screen 0 "Screen0" 0 0
  6. InputDevice "Mouse0" "CorePointer"
  7. InputDevice "Keyboard0" "CoreKeyboard"
  8. EndSection
  9.  
  10. Section "Files"
  11. ModulePath "/usr/lib/xorg/modules"
  12. FontPath "/usr/share/fonts/X11/misc"
  13. FontPath "/usr/share/fonts/X11/cyrillic"
  14. FontPath "/usr/share/fonts/X11/100dpi/:unscaled"
  15. FontPath "/usr/share/fonts/X11/75dpi/:unscaled"
  16. FontPath "/usr/share/fonts/X11/Type1"
  17. FontPath "/usr/share/fonts/X11/100dpi"
  18. FontPath "/usr/share/fonts/X11/75dpi"
  19. FontPath "/var/lib/defoma/x-ttcidfont-conf.d/dirs/TrueType"
  20. FontPath "built-ins"
  21. EndSection
  22.  
  23. Section "Module"
  24. Load "record"
  25. Load "glx"
  26. Load "extmod"
  27. Load "dri"
  28. Load "dbe"
  29. Load "dri2"
  30. EndSection
  31.  
  32. Section "InputDevice"
  33. Identifier "Keyboard0"
  34. Driver "kbd"
  35. EndSection
  36.  
  37. Section "InputDevice"
  38. Identifier "Mouse0"
  39. Driver "mouse"
  40. Option "Protocol" "auto"
  41. Option "Device" "/dev/input/mice"
  42. Option "ZAxisMapping" "4 5 6 7"
  43. EndSection
  44.  
  45. Section "Monitor"
  46. Identifier "Monitor0"
  47. VendorName "Monitor Vendor"
  48. ModelName "Monitor Model"
  49. EndSection
  50.  
  51. Section "Device"
  52. ### Available Driver options are:-
  53. ### Values: <i>: integer, <f>: float, <bool>: "True"/"False",
  54. ### <string>: "String", <freq>: "<f> Hz/kHz/MHz"
  55. ### [arg]: arg optional
  56. #Option "ShadowFB" # [<bool>]
  57. #Option "DefaultRefresh" # [<bool>]
  58. #Option "ModeSetClearScreen" # [<bool>]
  59. Identifier "Card0"
  60. Driver "vesa"
  61. VendorName "Intel Corporation"
  62. BoardName "N10 Family Integrated Graphics Controller"
  63. BusID "PCI:0:2:0"
  64. EndSection
  65.  
  66. Section "Screen"
  67. Identifier "Screen0"
  68. Device "Card0"
  69. Monitor "Monitor0"
  70. SubSection "Display"
  71. Viewport 0 0
  72. Depth 1
  73. EndSubSection
  74. SubSection "Display"
  75. Viewport 0 0
  76. Depth 4
  77. EndSubSection
  78. SubSection "Display"
  79. Viewport 0 0
  80. Depth 8
  81. EndSubSection
  82. SubSection "Display"
  83. Viewport 0 0
  84. Depth 15
  85. EndSubSection
  86. SubSection "Display"
  87. Viewport 0 0
  88. Depth 16
  89. EndSubSection
  90. SubSection "Display"
  91. Viewport 0 0
  92. Depth 24
  93. EndSubSection
  94. EndSection
  95.