找回密码
 注册
快捷导航
查看: 10138|回复: 5

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

[复制链接] |自动提醒
阅读字号:

1万

回帖

82

积分

1457

资产值

至尊会员I Rank: 4Rank: 4Rank: 4Rank: 4

注册时间
2004-11-29
发表于 2007-9-3 14:54:56| 字数 44| - 中国–广东–韶关 电信 | 显示全部楼层 |阅读模式
而且在屏幕分辨率首选项中,就只有这一个模式,以前可不是这样的,到底是怎么一回事呢?**\

2914

回帖

168

积分

1万

资产值

至尊会员II Rank: 4Rank: 4Rank: 4Rank: 4

注册时间
2005-1-5
发表于 2007-9-3 15:32:21| 字数 89| - 中国–广西–南宁 电信 | 显示全部楼层
xorg.conf没有设置好。
到ubuntu的论坛上看看,或者手工改一下xorg.conf,按照里边800×600那一段写一个自己的分辨率的段,再重启x window就可以选择了。
回复 支持 反对

使用道具 举报

1万

回帖

82

积分

1457

资产值

至尊会员I Rank: 4Rank: 4Rank: 4Rank: 4

注册时间
2004-11-29
 楼主| 发表于 2007-9-3 17:21:38| 字数 3,968| - 中国–广东–韶关 电信 | 显示全部楼层
# /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
回复 支持 反对

使用道具 举报

1万

回帖

82

积分

1457

资产值

至尊会员I Rank: 4Rank: 4Rank: 4Rank: 4

注册时间
2004-11-29
 楼主| 发表于 2007-9-3 17:22:56| 字数 56| - 中国–广东–韶关 电信 | 显示全部楼层
应该改的我都改了,可现在还是一样的,原来我也帮别人改过的,一改就行,可是现在为什么我的却改不过来呢,真是奇怪了!
回复 支持 反对

使用道具 举报

1万

回帖

82

积分

1457

资产值

至尊会员I Rank: 4Rank: 4Rank: 4Rank: 4

注册时间
2004-11-29
 楼主| 发表于 2007-9-3 21:25:01| 字数 848| - 中国–广东–韶关 电信 | 显示全部楼层
在终端下面输入: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
回复 支持 反对

使用道具 举报

1万

回帖

82

积分

1457

资产值

至尊会员I Rank: 4Rank: 4Rank: 4Rank: 4

注册时间
2004-11-29
 楼主| 发表于 2007-9-4 09:18:39| 字数 23| - 中国–广东–韶关 电信 | 显示全部楼层
原因找到了,原来是底座上接了外接显示器的缘故!
回复 支持 反对

使用道具 举报

您需要登录后才可以回帖 登录 | 注册

本版积分规则

Powered by Discuz! X3.5 © 2001-2023 Comsenz Inc

GMT+8, 2025-2-12 18:55 , Processed in 0.109089 second(s), 30 queries , Gzip On, OPcache On.

手机版|小黑屋|安卓客户端|iOS客户端|Archiver|备用网址1|备用网址2|在线留言|专门网

返回顶部