Hello, for the first time i use PCLINUX OS Openbox and normally while running Mandriva i can simply change mine display to 1380x768 but when i see xorg.conf there is no any information about the 24 color depth where must i tell nvidia to run in the mode 24 bits and resolution 1380x768 because i have an wide screen and the screen mode now i am running is not welcome.
I am very happy with this distro it runs simply, quick use less memory and is refreshing the openbox do i like very much but for mine nvidia problem i need help.
output xorg.conf:
# File generated by XFdrake (rev )
# **********************************************************************
# Refer to the xorg.conf man page for details about the format of
# this file.
# **********************************************************************
Section "ServerFlags"
Option "DontZap" "False" # disable <Ctrl><Alt><BS> (server abort)
AllowMouseOpenFail # allows the server to start up even if the mouse does not work
#DontZoom # disable <Ctrl><Alt><KP_+>/<KP_-> (resolution switching)
EndSection
Section "Module"
Disable "dri"
Load "dbe" # Double-Buffering Extension
Load "v4l" # Video for Linux
Load "extmod"
Load "glx" # 3D layer
EndSection
Section "Monitor"
Identifier "monitor1"
VendorName "Plug'n Play"
ModelName "W1941"
HorizSync 30-61
VertRefresh 56-75
# Monitor preferred modeline (60.0 Hz vsync, 47.7 kHz hsync, ratio 16/9, 85 dpi)
ModeLine "1360x768" 85.5 1360 1424 1536 1792 768 771 777 795 +hsync +vsync
# TV fullscreen mode or DVD fullscreen output.
# 768x576 @ 79 Hz, 50 kHz hsync
ModeLine "768x576" 50.00 768 832 846 1000 576 590 595 630
# 768x576 @ 100 Hz, 61.6 kHz hsync
ModeLine "768x576" 63.07 768 800 960 1024 576 578 590 616
EndSection
Section "Device"
Identifier "device1"
VendorName "nVidia Corporation"
BoardName "NVIDIA GeForce 6100 and later"
Driver "nvidia"
Option "DPMS"
Option "DynamicTwinView" "false"
Option "AddARGBGLXVisuals"
EndSection
Section "Screen"
Identifier "screen1"
Device "device1"
Monitor "monitor1"
DefaultColorDepth 24
EndSection
Section "ServerLayout"
Identifier "layout1"
Screen "screen1"
EndSection
Two choices. Either in
PCC --> Hardware --> Set up the graphical server set the
Monitor first then the
Graphic Card, then the
Resolution, in that order, or as
root, edit your
xorg.conf and add a
Section "Screen" as shown below;
Section "Screen"
Identifier "screen1"
Device "device1"
Monitor "monitor1"
DefaultColorDepth 24
Subsection "Display"
Depth 8
Modes "1280x1024" "1152x864" "1024x768" "832x624" "800x600" "640x480" "480x360" "320x240"
EndSubsection
Subsection "Display"
Depth 15
Modes "1280x1024" "1152x864" "1024x768" "832x624" "800x600" "640x480" "480x360" "320x240"
EndSubsection
Subsection "Display"
Depth 16
Modes "1280x1024" "1152x864" "1024x768" "832x624" "800x600" "640x480" "480x360" "320x240"
EndSubsection
Subsection "Display"
Depth 24
Modes "1280x1024" "1152x864" "1024x768" "832x624" "800x600" "640x480" "480x360" "320x240"
EndSubsection
EndSection
Edit each
Modes line to have your
desired resolution as the first quoted entry, ie;
Subsection "Display"
Depth 24
Modes "1380x768" "<whatever>" "<whatever>"Change each
<whatever> to the next lower resolution that has the same aspect ratio.
When done,
save the file, and either
reboot or
log out and
in.