|
主板是技嘉GA-K8N51GMF,板载显卡 nVIDID 6200TC 显示卡,以前装FC5的时候没有这么多的问题
装好FC6之后只能在800*600分辨率下工作,好不容易用sudo yum install kmod-nvidia装了显卡驱动,分辨率调成1024*768,但好像仍然驱动得不好,分辨率最高只有1024*768,刷新频率只有50,53,54,看起来很不舒服
xorg.conf不知道怎么配置,改一改就出现问题
[root@localhost ~]# xrandr -q
SZ: Pixels Physical Refresh
*0 1024 x 768 ( 342mm x 270mm ) *50 53 54
1 800 x 600 ( 267mm x 211mm ) 51 61 62 63 64 65
2 640 x 480 ( 213mm x 169mm ) 52 70 71 72
3 960 x 600 ( 320mm x 211mm ) 55
4 960 x 540 ( 320mm x 190mm ) 56 57
5 840 x 525 ( 280mm x 185mm ) 58 59
6 832 x 624 ( 278mm x 220mm ) 60
7 800 x 512 ( 267mm x 180mm ) 66
8 720 x 450 ( 240mm x 158mm ) 67
9 640 x 512 ( 213mm x 180mm ) 68 69
10 640 x 400 ( 213mm x 141mm ) 73 74 75
11 640 x 384 ( 213mm x 135mm ) 76 77 78
12 640 x 360 ( 213mm x 127mm ) 79 80 81
13 576 x 432 ( 192mm x 152mm ) 82 83 84 85
14 512 x 384 ( 171mm x 135mm ) 86 87 88
15 416 x 312 ( 139mm x 110mm ) 89
16 400 x 300 ( 133mm x 105mm ) 90 91 92 93
17 320 x 240 ( 106mm x 84mm ) 94 95 96
这个是装完显卡驱动后的xorg.conf文件
# Xorg configuration created by system-config-display
Section "ServerLayout"
Identifier "single head configuration"
Screen 0 "Screen0" 0 0
InputDevice "Keyboard0" "CoreKeyboard"
EndSection
Section "Files"
ModulePath "/usr/lib64/xorg/modules/extensions/nvidia"
ModulePath "/usr/lib64/xorg/modules"
EndSection
Section "InputDevice"
Identifier "Keyboard0"
Driver "kbd"
Option "XkbModel" "pc105"
Option "XkbLayout" "us"
EndSection
Section "Monitor"
### Comment all HorizSync and VertSync values to use DDC:
Identifier "LCD Monitor"
### Comment all HorizSync and VertSync values to use DDC:
HorizSync 28.0 - 90.0
VertRefresh 43.0 - 90.0
Option "DPMS"
EndSection
Section "Device"
Identifier "Videocard0"
Driver "nvidia"
Option "hwcursor" "false"
Option "AddARGBGLXVisuals" "True"
EndSection
Section "Screen"
Identifier "Screen0"
Device "Videocard0"
DefaultDepth 24
SubSection "Display"
Viewport 0 0
Depth 24
Modes "1024x768" "800x600" "640x480"
EndSubSection
EndSection |
|