首页
学习
活动
专区
圈层
工具
发布
社区首页 >问答首页 >屏幕分辨率和双显示器

屏幕分辨率和双显示器
EN

Ask Ubuntu用户
提问于 2010-12-20 20:03:11
回答 1查看 1.6K关注 0票数 2

在我的笔记本电脑上,当我有双显示器时,我的笔记本电脑屏幕分辨率是1680x1050。然而,当我断开第二个屏幕并重新启动笔记本电脑时,屏幕分辨率下降到1400x1050,我没有机会将其设置为1680x1050。

你知道我为什么只有双显示器的笔记本电脑屏幕的正确分辨率吗?

EN

回答 1

Ask Ubuntu用户

发布于 2010-12-21 23:39:33

很奇怪,在/etc/X11/xorg.conf中没有特定的分辨率设置。

你需要制定具体的决议,这样才能很好地发挥作用。

下面是我如何设置我的xorg.conf,您可以使用它作为指南(搜索谷歌以获得您的分辨率),也可以在短时间内备份和使用此xorg.conf,但它将允许您使用1024x768@60 of的最高分辨率(我喜欢此xorg.conf):

代码语言:javascript
复制
Section "InputDevice"

    Identifier  "Generic Keyboard"
    Driver      "kbd"
    Option      "XkbRules"  "xorg"
    Option      "XkbModel"  "pc105"
    Option      "XkbLayout" "ro"
EndSection

Section "InputDevice"

    Identifier  "Configured Mouse"
    Driver      "mouse"
EndSection

Section "Device"
    Identifier  "Configured Video Device"
EndSection

Section "Monitor"
    Identifier  "Configured Monitor"
    Modelname "Custom 1"
    modeline  "640x480@60" 25.2 640 656 752 800 480 490 492 525 -vsync -hsync
    modeline  "800x600@60" 40.0 800 840 968 1056 600 601 605 628 +hsync +vsync
    modeline "1024x768@60" 65.0 1024 1048 1184 1344 768 771 777 806 -vsync -hsync
EndSection

Section "Screen"

    Identifier  "Default Screen"
    Monitor     "Configured Monitor"

    SubSection "Display"

        Depth 24
        Modes "1024x768@60" "800x600@60" "640x400@60"
        Modes "800x600@60" "640x400@60"

    EndSubSection

EndSection
票数 1
EN
页面原文内容由Ask Ubuntu提供。腾讯云小微IT领域专用引擎提供翻译支持
原文链接:

https://askubuntu.com/questions/18305

复制
相关文章

相似问题

领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档