Find the answer to your Linux question:
Results 1 to 3 of 3
I just moved to Debian coming from Fedora, and I've had this problem before. But on Fedora, I only had to add the mode line in xorg.conf. It doesn't seem ...
  1. #1
    Just Joined!
    Join Date
    Feb 2008
    Posts
    72

    My eyes! Resolution stuck at 640x480 (yes I've altered xorg.conf..)

    I just moved to Debian coming from Fedora, and I've had this problem before. But on Fedora, I only had to add the mode line in xorg.conf. It doesn't seem to make a difference in Debian. Here's my xorg.conf:
    Section "ServerLayout"
    Identifier "Default Layout"
    Screen 0 "Default Screen" 0 0
    InputDevice "Generic Keyboard"
    InputDevice "Configured Mouse"
    EndSection

    Section "Files"

    # path to defoma fonts
    FontPath "/usr/share/fonts/X11/misc"
    FontPath "/usr/X11R6/lib/X11/fonts/misc"
    FontPath "/usr/share/fonts/X11/cyrillic"
    FontPath "/usr/X11R6/lib/X11/fonts/cyrillic"
    FontPath "/usr/share/fonts/X11/100dpi/:unscaled"
    FontPath "/usr/X11R6/lib/X11/fonts/100dpi/:unscaled"
    FontPath "/usr/share/fonts/X11/75dpi/:unscaled"
    FontPath "/usr/X11R6/lib/X11/fonts/75dpi/:unscaled"
    FontPath "/usr/share/fonts/X11/Type1"
    FontPath "/usr/X11R6/lib/X11/fonts/Type1"
    FontPath "/usr/share/fonts/X11/100dpi"
    FontPath "/usr/X11R6/lib/X11/fonts/100dpi"
    FontPath "/usr/share/fonts/X11/75dpi"
    FontPath "/usr/X11R6/lib/X11/fonts/75dpi"
    FontPath "/var/lib/defoma/x-ttcidfont-conf.d/dirs/TrueType"
    EndSection

    Section "Module"
    Load "i2c"
    Load "bitmap"
    Load "ddc"
    Load "extmod"
    Load "freetype"
    Load "glx"
    Load "int10"
    Load "vbe"
    EndSection

    Section "ServerFlags"
    Option "Xinerama" "0"
    EndSection

    Section "InputDevice"
    Identifier "Generic Keyboard"
    Driver "kbd"
    Option "CoreKeyboard"
    Option "XkbRules" "xorg"
    Option "XkbModel" "pc104"
    Option "XkbLayout" "us"
    EndSection

    Section "InputDevice"
    Identifier "Configured Mouse"
    Driver "mouse"
    Option "CorePointer"
    Option "Device" "/dev/input/mice"
    Option "Protocol" "ImPS/2"
    Option "Emulate3Buttons" "true"
    EndSection

    Section "Monitor"
    Identifier "Radius"
    VendorName "KDS"
    ModelName "Radius S-3F"
    HorizSync 28.0 - 33.0
    VertRefresh 43.0 - 72.0
    EndSection

    Section "Device"
    Identifier "Onboard Intel"
    Driver "vesa"
    EndSection

    Section "Device"
    Identifier "GeForce 7100 GS"
    Driver "nvidia"
    VendorName "NVIDIA Corporation"
    BoardName "GeForce 7100 GS"
    EndSection

    Section "Screen"
    Identifier "Default Screen"
    Device "GeForce 7100 GS"
    Monitor "Radius"
    DefaultDepth 24
    SubSection "Display"
    Depth 24
    Modes "1024x768" "800x600" "640x480"
    EndSubSection
    I've tried running "dpkg-reconfigure xserver-xorg" but it didn't help. I'm hoping that it guessed my horizontal and vertical refresh rates right, though, because my monitor (KDS Radius S-3F) is no longer being made, and the manufacturer's website doesn't tell me any technical details. But I do know that its refresh rate is 60Hz, I just don't know about the "HorizSync" option.

    Any ideas?

  2. #2
    Linux Guru
    Join Date
    Nov 2004
    Posts
    6,110
    You have two devices listed, I think that may be causing some conflict for you.
    Code:
    Section "Device"
    Identifier "Onboard Intel"
    Driver "vesa"
    EndSection
    
    Section "Device"
    Identifier "GeForce 7100 GS"
    Driver "nvidia"
    VendorName "NVIDIA Corporation"
    BoardName "GeForce 7100 GS"
    EndSection
    I'd remove the intel/vesa section or at least comment it out and then restart the X server to see if that works for you.

  3. #3
    Just Joined!
    Join Date
    Feb 2008
    Posts
    72
    Thanks for the suggestion. I tried commenting out (and removing) the intel device lines, but I still have the same issue. I also tried using the vesa driver for the 7100 GS, and still the same.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •