"Out Of Range" when changing resolution

Issues Related to Hardware (Sound, Video, Printers, Scanners, Webcams, Touchpads, Keyboards, Sensors, Drives, GRUB, etc.)

Moderator: Moderators

"Out Of Range" when changing resolution

Postby crackenoid » Sun Sep 09, 2007 6:46

Hey
I am new to Sabayon Linux.
I just built a new system,
Intel E6400, MSI 650i motherboard,
1GB DDR2-800,
EVGA Nvidia 7300GT 256 Mb Graphic Card,

I have a Sceptre X20WG 1080p 16:10 LCD monitor.

After Installing Sabayon 3,4f from the live DVD it loaded with a default resolution of 1024x768 which was also listed as the highest in the "Display" tab under "Configure - KDesktop" window.

I changed my resolution on my monitor with the "NVIDIA X Server Settings" to its maximum and recommended resolution 1680x1050 and it gave the "Out of Range" error. Sabayon then switched back to the 1024x768 resolution.
crackenoid
Baby Hen
 
Posts: 2
Joined: Sun Sep 09, 2007 6:32

Re: "Out Of Range" when changing resolution

Postby WarraWarra » Sun Sep 09, 2007 23:53

The nvidia autodetect also gave the same numbers ?

Best is to get the correct specs for the screen and then manually add them to /etc/X11/xorg.conf The 1080i is useless unless you have it connected via a hdmi connector. If using a svga / dvi connection on normal video cards then the res is liked to this connection.

See my nvidia xorg.conf manuallyedited with correct 1440x900 res for my laptop lcd.
Code: Select all
Section "Files"


    #FontPath   "/usr/share/fonts/local/"
    FontPath   "/usr/share/fonts/misc/"
    FontPath   "/usr/share/fonts/Type1/"
    FontPath    "/usr/share/fonts/TTF/"
    FontPath   "/usr/share/fonts/75dpi/"
    FontPath   "/usr/share/fonts/100dpi/"
    FontPath    "/usr/share/fonts/corefonts"

EndSection

# **********************************************************************
# Module section -- this is an optional section which is used to specify
# which run-time loadable modules to load when the X server starts up.
# **********************************************************************

Section "Module"

    Load   "dbe"
    Load   "i2c"
    Load   "glx"
    Load   "ddc"
    Load   "type1"
    Load   "freetype"
    Load   "extmod"
    Load   "synaptics"
    Load   "vbe"
    Load        "dri"

EndSection


# **********************************************************************
# Server flags section.  This contains various server-wide Options.
# **********************************************************************

Section "ServerFlags"

     Option    "AllowMouseOpenFail" "true"

EndSection

# **********************************************************************
# Input devices
# **********************************************************************

# **********************************************************************
# Core keyboard's InputDevice section
# **********************************************************************

Section "InputDevice"
    Identifier      "Synaptics1"
    Driver      "synaptics"
    Option      "SendCoreEvents"   "true"
    Option      "Device"      "/dev/psaux"
    Option      "Protocol"      "auto-dev"
    Option      "HorizScrollDelta"   "0"
    Option      "SHMConfig"      "on"
    # For ALPS/MacBook TouchPads
    #Option      "MaxSpeed"      "0.7"
    #Option      "MinSpeed"      "0.18"
    #Option      "AccelFactor"      "0.08"
    #Option      "TopEdge"      "120"
    #Option      "LeftEdge"      "120"
    #Option      "BottomEdge"      "830"
    #Option      "RightEdge"      "650"
    #Option      "FingerLow"      "25"
    #Option      "FingerHigh"      "30"
    # MacBook touchpad
    #Option      "MaxTapTime"      "180"
    #Option      "MaxTapMove"      "220"
    #Option      "MaxDoubleTapTime"   "180"
    #Option      "VertScrollDelta"   "20"
    #Option      "HorizScrollDelta"   "50"
    #Option      "TapButton2"      "3"
    #Option      "TapButton3"      "2"
    #Option      "VertTwoFingerScroll"   "1"

    # Do you keep moving the mouse while typing? Try this trick.
    #synclient TouchpadOff=1 disable your synaptics touchpad
    #synclient TouchpadOff=0 enable your synaptics touchpad
EndSection


Section "InputDevice"

    Identifier   "Keyboard1"
    Driver   "kbd"
   
    Option   "AutoRepeat"   "500 5"
    Option      "XkbModel"   "pc105"
    Option   "XkbLayout"   "us"
    Option      "XkbRules"      "xorg"
    # Macintosh keyboard
    #Option   "XkbOptions"   "lv3:rwin_switch"

EndSection


Section "InputDevice"
  Driver        "wacom"
  Identifier    "wacom1"
  Option        "Device"        "/dev/wacom"          # Change to
                                                      # /dev/input/event
                                                      # for USB
  Option        "Type"          "stylus"
  Option        "ForceDevice"   "ISDV4"               # Tablet PC ONLY
EndSection

Section "InputDevice"
  Driver        "wacom"
  Identifier    "wacom2"
  Option        "Device"        "/dev/wacom"          # Change to
                                                      # /dev/input/event
                                                      # for USB
  Option        "Type"          "eraser"
  Option        "ForceDevice"   "ISDV4"               # Tablet PC ONLY
EndSection

Section "InputDevice"
  Driver        "wacom"
  Identifier    "wacom3"
  Option        "Device"        "/dev/wacom"          # Change to
                                                      # /dev/input/event
                                                      # for USB
  Option        "Type"          "cursor"
  Option        "ForceDevice"   "ISDV4"               # Tablet PC ONLY
EndSection


# **********************************************************************
# Core Pointer's InputDevice section
# **********************************************************************

Section "InputDevice"

# Identifier and driver

    Identifier   "Mouse1"
    Driver   "mouse"

    Option   "Device"   "/dev/psaux"
    Option   "Protocol"   "ImPS/2"
    Option   "ZAxisMapping"   "4 5"
     
EndSection

Section "InputDevice"
    Identifier   "Mouse2"
    Driver   "mouse"
    Option   "Protocol"   "ImPS/2"
    Option   "Device"   "/dev/input/mice"
    Option    "ZAxisMapping" "4 5"
EndSection


# **********************************************************************
# Monitor section
# **********************************************************************

# Any number of monitor sections may be present

Section "Monitor"

    Identifier   "Generic Monitor"
    #Option      "DPMS"

    VertRefresh 43 - 60
    HorizSync   28 - 80
   
EndSection

# **********************************************************************
# Graphics device section
# **********************************************************************

# Any number of graphics device sections may be present

Section "Device"
    Identifier  "VESA"
    Driver      "nvidia" # do not remove vesa
    #Option "RenderAccel" "on"
    #Option "XAANoOffscreenPixmaps"
    #Option "BusType" "PCI"
    #Option "ColorTiling" "on"
    #Option "EnablePageFlip" "on"
EndSection


# **********************************************************************
# Screen sections.
# **********************************************************************

Section "Screen"

# The Identifier, Device and Monitor lines must be present

    Identifier   "Screen 1"
    Device   "VESA"
    Monitor   "Generic Monitor"
    #Option "AddARGBGLXVisuals" "true"

# The favoured Depth and/or Bpp may be specified here

    DefaultDepth 24

    SubSection "Display"
        Depth      8
        ViewPort   0 0
        #Modes      "1440x900" "1024x768" "800x600" "640x480"
    EndSubsection

    SubSection "Display"
        Depth           16
        ViewPort        0 0
        #Modes      "1440x900" "1024x768" "800x600" "640x480"
    EndSubsection

    SubSection "Display"
        Depth           24
        ViewPort        0 0
        #Modes      "1440x900" "1024x768" "800x600" "640x480"
    EndSubsection


EndSection


Section "ServerLayout"
# The Identifier line must be present

    Identifier   "Main Layout"
    Screen 0    "Screen 1"
    InputDevice   "Mouse1" "CorePointer"
    InputDevice   "Mouse2" "SendCoreEvents"
    InputDevice "Synaptics1" "SendCoreEvents"
    #InputDevice "wacom1" "SendCoreEvents"
    #InputDevice "wacom2" "SendCoreEvents"
    #InputDevice "wacom3" "SendCoreEvents"
    InputDevice "Keyboard1" "CoreKeyboard"

EndSection

Section "DRI"
    Mode 0666
EndSection

Section "Extensions"
   #Option "Composite" "Enable"
EndSection


Code: Select all
Model
Brand    SCEPTRE
Model    X20WG-1080P
Cabinet Color    Black
Display
Screen Size    20"
Widescreen    Yes
Maximum Resolution    1680 x 1050
Recommended Resolution    1680 x 1050
Viewing Angle    160°(H) / 160°(V)
Display Colors    16.2 Million
Brightness    300 cd/m2
Contrast Ratio    1000:1
Response Time    5ms(GTG)
Horizontal Refresh Rate    Analog: 24-82 kHz, 31-80 kHz
Vertical Refresh Rate    50 Hz - 75 Hz
Display Type    WSXGA
Connectivity
Input Video Compatibility    Analog RGB, Digital
Connectors    D-Sub, DVI-D
D-Sub    1
DVI    1
HDMI    No
Power
Power Supply    100V to 240V AC @ 50/60 Hz
Power Consumption    80w (max.)
Convenience
User Controls    Power on/off, OSD (On Screen Display), Contrast, Brightness, Clock, phase, H-Position, V-Position, H-Size, V-Size, Graph/Text Mode Selection, Auto-adjust, Color Temperature, Audio Volume, OSD H-Position, OSD V-Position, Display Mode Detection, and Reset: Basic Setting, Position, Miscellaneous, & All Functions
Regulatory Approvals    UL, FCC-B, EPA
Stand Adjustments    Tilt
Built in TV Tuner    No
Built in Speakers    Yes
Features    â€¢Flicker and Static Free
•PNP: DDC1/2B (Analog), DDC2B (Digital)
•Less Than VLMF Radiation Standard
•Panel & Neck detachable
•Factory presetting mode: 41
•Ergotron Arm Compatible (VESA 100mm)
Windows Vista    Certified for
Packaging
Package Contents    X20WG-1080P LCD Monitor
User Manual
VGA Cable
Audio Cable
Dimensions
Dimensions (W×H×D)    18.75" x 15.38" x 7.1"
Weight    18 lbs.
Manufacturer Warranty
Parts    1 year limited
Labor    1 year limited


Hope this helps.
User avatar
WarraWarra
Sagely Hen
 
Posts: 1989
Joined: Wed Jan 03, 2007 21:01
Location: 31.324270, -113.585511

Re: "Out Of Range" when changing resolution

Postby crackenoid » Mon Sep 10, 2007 2:58

Thank for the reply.
I tried to add 1680x1050 in the display modes of xorg.conf. Then I restart my X server using Ctrl+Alt+Backspace and the monitor gives the "Out of Range" error.
crackenoid
Baby Hen
 
Posts: 2
Joined: Sun Sep 09, 2007 6:32

Re: "Out Of Range" when changing resolution

Postby WarraWarra » Mon Sep 10, 2007 3:31

The hz frequency is it within the 50 to 75 hz as in the specs. I think 50 / 60 / 72 / 75 is default normal good hz freq. You could also try to reinstall the video driver as this does sometimes fix this. Make sure the USE=" ... " has sdl and opengl in /etc/make.conf before reinstalling the video driver.

To reinstall nvidia:
# sudo emerge nvidia-drivers
User avatar
WarraWarra
Sagely Hen
 
Posts: 1989
Joined: Wed Jan 03, 2007 21:01
Location: 31.324270, -113.585511


Return to Hardware

Who is online

Users browsing this forum: No registered users and 0 guests