|
|
发表于 2009-8-8 16:24:51
|
显示全部楼层
我的设置文件 xorg.conf :
楼主可以看看这里:Intel_Graphics_Media_Accelerator_950
- #=========================================================================================================================#
- # /etc/X11/xorg.conf
- # X 设置文件
- # Gentoo Hooong 2009.08.06
- #=========================================================================================================================#
- # 一、ServerLayout
- # Section "ServerLayout"
- # Identifier "Default Layout"
- # Screen "Default Screen"
- # EndSection
- # ....................................................................................................................... #
- # 二、加载字体与模块
- Section "Files"
- FontPath "/usr/share/fonts/100dpi/"
- FontPath "/usr/share/fonts/75dpi/"
- FontPath "/usr/share/fonts/misc/"
- FontPath "/usr/share/fonts/truetype/"
- FontPath "/usr/share/fonts/ttf/"
- FontPath "/usr/share/fonts/wqy-bitmapfont/"
- FontPath "/usr/share/fonts/wqy-zenhei/"
- EndSection
- Section "Module"
- Load "glx"
- Load "extmod"
- Load "record"
- Load "GLcore"
- Load "dbe"
- EndSection
- # ....................................................................................................................... #
- # 三、显卡、显示器与屏幕分辨率
- Section "Device"
- Identifier "Intel Graphics Adapter"
- Driver "intel"
- Option "monitor-LVDS" "Builtin LCD"
- Option "monitor-VGA" "External VGA"
- Option "AccelMethod" "UXA"
- Option "Tiling" "False"
- EndSection
- Section "Monitor"
- Identifier "Builtin LCD"
- Option "Left" "External VGA"
- EndSection
- Section "Monitor"
- Identifier "External VGA"
- Option "Right" "Builtin LCD"
- # Option "PreferredMode" "1440x900"
- # HorizSync 31.5-90
- # VertRefresh 50-90
- # # 1440x900 @ 60.00 Hz (GTF) hsync: 55.92 kHz; pclk: 106.47 MHz
- # Modeline "1440x900" 106.47 1440 1520 1672 1904 900 901 904 932 -HSync +Vsync ## gtf 1440 900 60
- EndSection
- Section "Screen"
- Identifier "Default Screen"
- Device "Intel Graphics Adapter"
- SubSection "Display"
- # Virtual 2464 900
- Virtual 2048 2048
- EndSubSection
- EndSection
- # ....................................................................................................................... #
- # 四、扩展选项
- Section "Extensions"
- Option "Composite" "Enable"
- EndSection
- #=========================================================================================================================#
复制代码 |
|