Advertisement
inukaze

Inukaze - Ubuntu - Intel Xorg OpenChrome

Aug 14th, 2011
162
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.61 KB | None | 0 0
  1. # Inukaze Intel / VIA Xorg with Driver "OpenChrome" for Ubuntu
  2. # Create or Edit , executing and paste the follow :
  3. # you must edit the Resolution
  4. # This is for a Netbook.
  5.  
  6. # You must install first this :
  7.  
  8. sudo apt-get -y install xserver-xorg-video-openchrome xserver-xorg-video-intel intel-gpu-tools libdrm-intel1 driconf
  9.  
  10. # sudo nano /etc/X11/xorg.conf
  11.  
  12. Section "Module"
  13. Load "bitmap"
  14. Load "dbe"
  15. Load "ddc"
  16. Load "dri"
  17. Load "evdev"
  18. Load "extmod"
  19. Load "freetype"
  20. Load "glx"
  21. Load "int10"
  22. Load "record"
  23. Load "type1"
  24. Load "vbe"
  25. EndSection
  26.  
  27. Section "DRI"
  28. Mode 0666
  29. EndSection
  30.  
  31. # Template Generico de xorg
  32.  
  33. Section "Files"
  34. FontPath "unix/:7100" # local font server
  35. FontPath "/usr/lib/X11/fonts/misc"
  36. FontPath "/usr/lib/X11/fonts/cyrillic"
  37. FontPath "/usr/lib/X11/fonts/100dpi/:unscaled"
  38. FontPath "/usr/lib/X11/fonts/75dpi/:unscaled"
  39. FontPath "/usr/lib/X11/fonts/Type1"
  40. FontPath "/usr/lib/X11/fonts/CID"
  41. FontPath "/usr/lib/X11/fonts/100dpi"
  42. FontPath "/usr/lib/X11/fonts/75dpi"
  43. EndSection
  44.  
  45. Section "InputDevice"
  46. Identifier "Generic Keyboard"
  47. Driver "kbd"
  48. Option "XkbRules" "xorg"
  49. Option "XkbModel" "pc105"
  50. Option "XkbLayout" "es"
  51. Option "XkbOptions" "lv3:ralt_switch"
  52. EndSection
  53.  
  54. Section "InputDevice"
  55. Identifier "Configured Mouse"
  56. Driver "mouse"
  57. Option "CorePointer"
  58. EndSection
  59.  
  60. Section "InputDevice"
  61. Identifier "Synaptics Touchpad"
  62. Driver "synaptics"
  63. Option "SendCoreEvents" "true"
  64. Option "Device" "/dev/psaux"
  65. Option "Protocol" "auto-dev"
  66. Option "HorizEdgeScroll" "0"
  67. EndSection
  68.  
  69. Section "Device"
  70. Identifier "Configured Video Device"
  71. Driver "openchrome"
  72. Option "ForcePanel"
  73. Option "ActiveDevice" "LCD.CRT"
  74. Option "PanelSize" "1024x600"
  75. Option "SWCursor"
  76. EndSection
  77.  
  78. Section "Monitor"
  79. Identifier "Configured Monitor"
  80. EndSection
  81.  
  82. Section "Screen"
  83. Identifier "Default Screen"
  84. SubSection "Display"
  85. Depth 1
  86. Modes "1024x768" "1024x600" "640x480"
  87. EndSubSection
  88. SubSection "Display"
  89. Depth 4
  90. Modes "1024x768" "1024x600" "640x480"
  91. EndSubSection
  92. SubSection "Display"
  93. Depth 8
  94. Modes "1024x768" "1024x600" "640x480"
  95. EndSubSection
  96. SubSection "Display"
  97. Depth 15
  98. Modes "1024x768" "1024x600" "640x480"
  99. EndSubSection
  100. SubSection "Display"
  101. Depth 16
  102. Modes "1024x768" "1024x600" "640x480"
  103. EndSubSection
  104. SubSection "Display"
  105. Depth 24
  106. Modes "1024x768" "1024x600" "640x480"
  107. EndSubSection
  108. EndSection
  109.  
  110. Section "ServerLayout"
  111. Identifier "Default Layout"
  112. Screen "Default Screen"
  113. InputDevice "Synaptics Touchpad"
  114. EndSection
  115.  
  116. Section "Extensions"
  117. Option "Composite"
  118. EndSection
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement