如何設置一張新的顯示卡
這頁的英文版本由 PhilSchaffner 建立及維護。歡迎各位作出貢獻。
開始時先檢查系統對你的顯示控制卡有甚麼理解:
/sbin/lspci -m
請在以上輸出尋找描述它的一行。
下面是所有現存 X11 驟動程式的清單:
$ rpm -qa xorg-x11-drv\* | awk -F"-" '{ print $4 }' | sort | pr -t -w80 -4 acecad elographics microtouch spaceorb aiptek evdev mouse summa apm fbdev mutouch tdfx ark fpit neomagic tek4957 ast glint nsc trident ati hyperpen nv tseng calcomp i128 palmax ur98 chips i740 penmount v4l cirrus i810 rendition vesa citron jamstudio s3 vga cyrix joystick s3virge via digitaledge keyboard savage vmmouse dmc magellan siliconmotion vmware dummy magictouch sis void dynapro mga sisusb voodoo elo2300
而 system-config-display 這個指令的用途如下:
$ system-config-display --help Usage: system-config-display [OPTIONS] Options: -h, --help display this help and exit -v, --verbose display what the program is doing more verbosely -o, --output= the filename of the config file to be output --reconfig don't base configuration on existing config files --noui don't show the gui, implicit when using --set options --forceui force the ui to be shown, needed when using --set options to change some setting, but you still want to show the ui --set-<key>= change the value of a specific configuration key. currently supported keys are: resolution the screen resolution used depth the color depth in bits most drivers support 8, 15, 16 and 24 driver the graphics card driver to use vsync monitor vertical sync rates allowed (in Hz) hsync monitor horizontal sync rates allowed (in kHz) videoram the amount of videoram in kilobytes, 0 means probe
憑著上述資料,請以 root 的身份嘗試以下指令:
system-config-display --reconfig --set-driver=NAME --set-videoram=0 --set-depth=24 --set-resolution=MxN
當中你須要為 NAME、M 及 N 輸入適當的數值。
首次進行設定時,你也許可以簡單地執行
system-config-display
當顯示卡被更換了,你可以先嘗試
system-config-display 這個指令已經從 CentOS-6 中移除。建議的代用指令是 xrandr。
system-config-display --reconfig
要作測試,請登出然後再登入。
其實要穫得一個有效的 xorg.conf 有點兒似玩魔術 —— 你可能須要重複數次才能成功。
或者你可以:登出;用 Ctrl-Alt-F1 轉到一個虛擬終端機;登入為 root;然後執行:
telinit 3
來進入文字模式。
現在:執行 system-config-display;執行 startx 來測試;離開 X。重複這三個步驟,然後當你穫得適當設定時,執行:
telinit 5
來重新啟動圖像介面登入。
更多的資訊可以在上游的 X Server Configuration Files 指南內找到。
- 用戶的螢幕解析度可以獨立設定。xorg.conf 指定最高的解析度,但每個的預設值可以不同。
GNOME 用戶的設定收錄在「系統/選項/螢幕解析度」。
KDE 的解析度設定可以透過「控制台/週邊設備/顯示器」,或者在桌面上按右鍵後選取「設定桌面/顯示器」來修改。
額外的驅動程式可以在第三方軟件庫內找到,尤其是 ELRepo、RPMforge、或 ATrpms。請留意有關安裝及設定 yum priorities 插件的警告及建議。
Translation of revision 15