dslove 发表于 2007-9-3 14:54

Ubuntu6.10为什么分辨率老是跑到800X600

而且在屏幕分辨率首选项中,就只有这一个模式,以前可不是这样的,到底是怎么一回事呢?**\

wm5wolf 发表于 2007-9-3 15:32

xorg.conf没有设置好。
到ubuntu的论坛上看看,或者手工改一下xorg.conf,按照里边800×600那一段写一个自己的分辨率的段,再重启x window就可以选择了。

dslove 发表于 2007-9-3 17:21

# /etc/X11/xorg.conf (xorg X Window System server configuration file)
#
# This file was generated by dexconf, the Debian X Configuration tool, using
# values from the debconf database.
#
# Edit this file with caution, and see the /etc/X11/xorg.conf manual page.
# (Type "man /etc/X11/xorg.conf" at the shell prompt.)
#
# This file is automatically updated on xserver-xorg package upgrades *only*
# if it has not been modified since the last upgrade of the xserver-xorg
# package.
#
# If you have edited this file but would like it to be automatically updated
# again, run the following command:
#   sudo dpkg-reconfigure -phigh xserver-xorg

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

Section "InputDevice"
        Identifier        "Generic Keyboard"
        Driver                "kbd"
        Option                "CoreKeyboard"
        Option                "XkbRules"        "xorgwioe93"
        Option                "XkbModel"        "pc105"
        Option                "XkbLayout"        "000190340054"
        Option                "XkbOptions"        "lv3:ralt_switch"
EndSection

Section "InputDevice"
        Identifier        "Configured Mouse"
        Driver                "mouse"
        Option                "CorePointer"
        Option                "Device"                "/dev/input/mice"
        Option                "Protocol"                "ExplorerPS/2"
        Option                "ZAxisMapping"                "4 5"
EndSection

Section "InputDevice"
        Identifier        "Synaptics Touchpad"
        Driver                "synaptics"
        Option                "SendCoreEvents"        "true"
        Option                "Device"                "/dev/psaux"
        Option                "Protocol"                "auto-dev"
        Option                "HorizScrollDelta"        "0"
EndSection

Section "InputDevice"
Driver      "wacom"
Identifier    "stylus"
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    "eraser"
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    "cursor"
Option      "Device"      "/dev/wacom"          # Change to
                                                      # /dev/input/event
                                                      # for USB
Option      "Type"          "cursor"
Option      "ForceDevice"   "ISDV4"               # Tablet PC ONLY
EndSection

Section "Device"
        Identifier        "Generic Video Card"
        Driver                "ati"
        BusID                "PCI:1:0:0"
EndSection

Section "Monitor"
        Identifier        "Generic Monitor"
        Option                "DPMS"
        HorizSync        28-64
        VertRefresh        43-72
EndSection

Section "Screen"
        Identifier        "Default Screen"
        Device                "Generic Video Card"
        Monitor                "Generic Monitor"
        DefaultDepth        24
        SubSection "Display"
                Depth                1
                Modes                "1024x768" "1024x768" "1024x768"
        EndSubSection
        SubSection "Display"
                Depth                4
                Modes                "1024x768" "1024x768" "1024x768"
        EndSubSection
        SubSection "Display"
                Depth                8
                Modes                "1024x768" "1024x768" "1024x768"
        EndSubSection
        SubSection "Display"
                Depth                15
                Modes                "1024x768" "1024x768" "1024x768"
        EndSubSection
        SubSection "Display"
                Depth                16
                Modes                "1024x768" "1024x768" "1024x768"
        EndSubSection
        SubSection "Display"
                Depth                24
                Modes                "1024x768" "1024x768" "1024x768"
        EndSubSection
EndSection

Section "ServerLayout"
        Identifier        "Default Layout"
        Screen                "Default Screen"
        InputDevice        "Generic Keyboard"
        InputDevice        "Configured Mouse"
        InputDevice   "stylus" "SendCoreEvents"
        InputDevice   "cursor" "SendCoreEvents"
        InputDevice   "eraser" "SendCoreEvents"
        InputDevice        "Synaptics Touchpad"
EndSection

Section "DRI"
        Mode        0666
EndSection

dslove 发表于 2007-9-3 17:22

应该改的我都改了,可现在还是一样的,原来我也帮别人改过的,一改就行,可是现在为什么我的却改不过来呢,真是奇怪了!

dslove 发表于 2007-9-3 21:25

在终端下面输入:sudo gedit /etc/X11/xorg.conf

SubSection   "Display"
      Depth       1
      Modes      "1280x1024_60" "1024x768" "800x600" "640x480"
    EndSubSection
    SubSection   "Display"
      Depth       4
      Modes      "1280x1024_60" "1024x768" "800x600" "640x480"
    EndSubSection
    SubSection   "Display"
      Depth       8
      Modes      "1280x1024_60" "1024x768" "800x600" "640x480"
    EndSubSection
    SubSection   "Display"
      Depth       15
      Modes      "1280x1024_60" "1024x768" "800x600" "640x480"
    EndSubSection
    SubSection   "Display"
      Depth       16
      Modes      "1280x1024_60" "1024x768" "800x600" "640x480"
    EndSubSection
    SubSection   "Display"
      Depth       24
      Modes      "1280x1024_60" "1024x768" "800x600" "640x480"
    EndSubSection

dslove 发表于 2007-9-4 09:18

原因找到了,原来是底座上接了外接显示器的缘故!
页: [1]
查看完整版本: Ubuntu6.10为什么分辨率老是跑到800X600