 
- 积分
- 43492
- 威望
- 9279
- 金钱
- 8
- 阅读权限
- 150
- 来自
- Bonn
- 在线时间
- 3551 小时
|
可以修改配置文件如下
编辑/etc/X11/xorg.conf
代码:
Section "Screen"
Identifier "Default Screen"
Device "NVIDIA Corporation NV11 [GeForce2 MX/MX 400]"
Monitor "MIRECHANG 77"
DefaultDepth 24 # <--先找到这一行看看DefaultDepth是多少
SubSection "Display"
Depth 1
Modes "1280x1024" "1024x768" "800x600" "640x480"
EndSubSection
SubSection "Display"
Depth 4
Modes "1280x1024" "1024x768" "800x600" "640x480"
EndSubSection
SubSection "Display"
Depth 8
Modes "1280x1024" "1024x768" "800x600" "640x480"
EndSubSection
SubSection "Display"
Depth 15
Modes "1280x1024" "1024x768" "800x600" "640x480"
EndSubSection
SubSection "Display"
Depth 24 # <--然后找到相应的位置
Modes "1024x768" "1280x1024" "800x600" "640x480" # <--把你要的分辨率放到最前面
EndSubSection
EndSection |
|