Quote:
sorry Sir.. im not getting ur question..Answer o which questions .please specify here.
|
You can read the thread and see the questions and suggestions that you have not responded to.....
I suspect your monitor is 1280x800 (16:10) --or maybe 1200x750 or 1280x720 Every monitor I have ever seen is one of 3 aspect ratios: 4:3, 16:9, 16:10
Here an excerpt from my xorg.conf file:
Code:
Section "Monitor"
Identifier "monitor1"
VendorName "Generic"
ModelName "Flat Panel 1920x1200"
Option "DPMS"
HorizSync 31.5-90
VertRefresh 59.9 - 60.1
Modeline "1920x1200" 193.16 1920 2048 2256 2592 1200 1201 1204 1242
+Hsync -Vsync
EndSection
Section "Device"
Identifier "device1"
VendorName "nVidia Corp."
BoardName "NVIDIA GeForce FX (generic)"
Driver "nv"
EndSection
Section "Screen"
Identifier "screen1"
Device "device1"
Monitor "monitor1"
DefaultColorDepth 24
Subsection "Display"
Depth 24
Modes "1920x1200" "1440x900" "1280x800"
EndSubsection
EndSection
Section "ServerLayout"
Identifier "layout1"
InputDevice "Keyboard1" "CoreKeyboard"
InputDevice "Mouse1" "CorePointer"
Screen "screen1"
EndSection
Note that "server layout" contains reference to other thing, including the Screen. That is what we need to focus on.
Screen refers to "Device" and "monitor", each of which needs to be configured to match you system.
Device:
The main thing here is to specify the correct driver for your video card. Usually nothing else is required.
Monitor:
If you do not have a modeline, you have to specify the horiz and vert. rates.
The modeline is sometimes the most reliable way of getting the system to do exactly what you want. (That was the case on my system)
Screen:
You need to include a subsection "Display"
Before we go any deeper, we need to understand why you don't get anything in the Xorg log---that is what would tell you if--e.g.--your video driver was wrong.
One thing you can try is to change the driver entry to "vesa".