在我的笔记本电脑上,当我有双显示器时,我的笔记本电脑屏幕分辨率是1680x1050。然而,当我断开第二个屏幕并重新启动笔记本电脑时,屏幕分辨率下降到1400x1050,我没有机会将其设置为1680x1050。
你知道我为什么只有双显示器的笔记本电脑屏幕的正确分辨率吗?
发布于 2010-12-21 23:39:33
很奇怪,在/etc/X11/xorg.conf中没有特定的分辨率设置。
你需要制定具体的决议,这样才能很好地发挥作用。
下面是我如何设置我的xorg.conf,您可以使用它作为指南(搜索谷歌以获得您的分辨率),也可以在短时间内备份和使用此xorg.conf,但它将允许您使用1024x768@60 of的最高分辨率(我喜欢此xorg.conf):
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
EndSectionhttps://askubuntu.com/questions/18305
复制相似问题