As far as I know you can use a previous xorg.conf (if you have one for that pc that works well) or create a new simple one similar to this:
Code:
Section "Screen"
Identifier "Default Screen"
DefaultDepth 24
EndSection
Section "Module"
Load "dri"
Load "GLcore"
EndSection
Section "Device"
Identifier "Default Device"
Driver "vesa"
EndSection
Obviously you should change the driver using the right one for your video card (e.g. intel, radeon, nv, etc...) and you might also want to add other sections like:
Code:
Section "Monitor"
HorizSync 30.0 - 85.0
VertRefresh 55.0 - 75.0
Identifier "Monitor"
Option "DPMS"
EndSection
Section "Extensions"
Option "DAMAGE" "Enable"
Option "Composite" "Enable"
Option "RENDER" "Enable"
EndSection
Do not use my HorizSync and VertRefresh values if you're not sure that they are correct for your monitor!
Depending on what you need (e.g. improve 3D performance), you can find many samples on internet.
Bookmarks