LinuxSir.cn,穿越时空的Linuxsir!

 找回密码
 注册
搜索
热搜: shell linux mysql
查看: 978|回复: 3

如果是intel集成显卡,驱动和分辨率设置怎么做?

[复制链接]
发表于 2009-4-4 14:17:32 | 显示全部楼层 |阅读模式
我现在用的NVIDIA显卡,驱动安装之后可以很方便的用nvidia-settings来设置刷新和分辨率,不用自己改xorg.conf,而且自己改还不是每一次都有效果……要使用1200X800是一个很麻烦的东西。
不知道intel显卡是不是就只能用修改xorg.conf的办法?最近打算搞个上网本,搞定无线之前先得搞定分辨率吧
发表于 2009-4-4 15:27:25 | 显示全部楼层
intel显卡在linux比较不错哦,特别是现在!

另:快速设置分辨率
  1. xrandr
复制代码
自己man下吧!  :-)

以前我也遇到类似问题,不过现在的液晶都不怎么调分辨率了!

http://ycf.name/linux_randr_display_resolution_ratio
回复 支持 反对

使用道具 举报

发表于 2009-4-4 18:54:25 | 显示全部楼层
  1. Section "Screen"
  2.         Identifier "Screen0"
  3.         Device     "Card0"
  4.         Monitor    "Monitor0"
  5.         DefaultDepth 24
  6.         SubSection "Display"
  7.                 Viewport   0 0
  8.                 Depth     24
  9.                 Modes "1280x800"
  10.         EndSubSection
  11. EndSection
复制代码


我的,就这么简单
回复 支持 反对

使用道具 举报

发表于 2009-4-4 18:58:56 | 显示全部楼层
我的:
  1. Section "Monitor"
  2.         Identifier "Monitor0"
  3.                 Option "DPMS" "true"
  4. #       HorizSync    28.0 - 78.0 # Warning: This may fry very old Monitors
  5.         HorizSync    31.5 - 100 # Warning: This may fry old Monitors      
  6.         VertRefresh  58 - 61 # Very conservative. May flicker.            
  7. #       VertRefresh  50.0 - 62.0 # Extreme conservative. Will flicker. TFT default.
  8.         #  Default modes distilled from                                            
  9.         #      "VESA and Industry Standards and Guide for Computer Display Monitor
  10.         #       Timing", version 1.0, revision 0.8, adopted September 17, 1998.   
  11.         #  $XFree86: xc/programs/Xserver/hw/xfree86/etc/vesamodes,v 1.4 1999/11/18 16:52:17 tsi Exp $
  12.         # 640x350 @ 85Hz (VESA) hsync: 37.9kHz                                                      
  13.         ModeLine "1280x800_60.00"  83.46  1280 1344 1480 1680  800 801 804 828  -HSync +Vsync        
  14.         Option  "PreferredMode" "1280x800"                                                           
  15. EndSection
  16. Section "Device"
  17.         Identifier  "Card0"
  18.         Driver      "intel"
  19.         VendorName  "All"  
  20.         BoardName   "All"  
  21.         Option "RenderAccel" "true"  
  22. EndSection                           
  23. Section "Screen"
  24.         Identifier "Screen0"
  25.         Device     "Card0"
  26.         Monitor    "Monitor0"
  27.         DefaultColorDepth 24
  28.         #SubSection "Display"
  29.         #       Depth     8
  30.         #       Modes "1280x800" "1024x768" "800x600" "640x480"
  31.         #EndSubSection
  32.         SubSection "Display"
  33.                 Depth     16
  34.                 Modes "1280x800" "1024x768" "800x600" "640x480"
  35.         EndSubSection
  36.         SubSection "Display"
  37.                 Depth     24
  38.                 Modes "1280x800" "1024x768" "800x600" "640x480"
  39.         EndSubSection
  40.         SubSection "Display"
  41.                 Depth     32
  42.                 Modes "1280x800" "1024x768" "800x600" "640x480"
  43.         EndSubSection
  44. EndSection
复制代码
回复 支持 反对

使用道具 举报

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

本版积分规则

快速回复 返回顶部 返回列表