Guest User

Untitled

a guest
May 26th, 2018
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.95 KB | None | 0 0
  1. % dpkg -l | grep xserver-xorg-video-intel
  2. ii xserver-xorg-video-intel 2:2.9.1-4 X.Org X server -- Intel i8xx, i9xx display driver
  3.  
  4. % xdpyinfo
  5. name of display: :0.0
  6. version number: 11.0
  7. vendor string: The X.Org Foundation
  8. vendor release number: 10707000
  9. X.Org version: 1.7.7
  10. maximum request size: 16777212 bytes
  11. motion buffer size: 256
  12. bitmap unit, bit order, padding: 32, LSBFirst, 32
  13. image byte order: LSBFirst
  14. number of supported pixmap formats: 7
  15. supported pixmap formats:
  16. depth 1, bits_per_pixel 1, scanline_pad 32
  17. depth 4, bits_per_pixel 8, scanline_pad 32
  18. depth 8, bits_per_pixel 8, scanline_pad 32
  19. depth 15, bits_per_pixel 16, scanline_pad 32
  20. depth 16, bits_per_pixel 16, scanline_pad 32
  21. depth 24, bits_per_pixel 32, scanline_pad 32
  22. depth 32, bits_per_pixel 32, scanline_pad 32
  23. keycode range: minimum 8, maximum 255
  24. focus: window 0x1a001e0, revert to PointerRoot
  25. number of extensions: 26
  26. BIG-REQUESTS
  27. Composite
  28. DAMAGE
  29. DOUBLE-BUFFER
  30. DPMS
  31. DRI2
  32. GLX
  33. Generic Event Extension
  34. MIT-SCREEN-SAVER
  35. MIT-SHM
  36. RANDR
  37. RECORD
  38. RENDER
  39. SGI-GLX
  40. SHAPE
  41. SYNC
  42. X-Resource
  43. XC-MISC
  44. XFIXES
  45. XFree86-DGA
  46. XFree86-VidModeExtension
  47. XINERAMA
  48. XInputExtension
  49. XKEYBOARD
  50. XTEST
  51. XVideo
  52. default screen number: 0
  53. number of screens: 1
  54. (snip)
  55.  
  56. % cat /etc/X11/xorg.conf
  57. Section "InputDevice"
  58. Identifier "Generic Keyboard"
  59. Driver "kbd"
  60. Option "XkbRules" "xorg"
  61. Option "XkbModel" "jp106"
  62. Option "XkbLayout" "jp"
  63. Option "XkbOptions" "ctrl:swapcaps"
  64. EndSection
  65.  
  66. Section "Device"
  67. Identifier "Video Device"
  68. Driver "intel"
  69. EndSection
  70.  
  71. Section "Screen"
  72. Identifier "LVDS"
  73. Device "Video Device"
  74. Monitor "Generic Monitor"
  75. DefaultDepth 24
  76. SubSection "Display"
  77. Depth 24
  78. Modes "1024x768"
  79. Virtual 2304 1024
  80. EndSubSection
  81. EndSection
Add Comment
Please, Sign In to add comment