一開始,安裝ubuntu後,沒有顯卡驅動,播放DVD都是花屏,而且用Skype測試視頻也是花的,所以想安裝顯卡驅動來解決此問題。
第一步:安裝依賴包,用新立得軟件管理器搜索,標記安裝。
* debhelper (>= 5.0.0)
* libdrm-dev (>> 2.0)
* libgl1-mesa-dev
* pkg-config
* quilt
* x11proto-core-dev
* x11proto-fonts-dev
* x11proto-gl-dev
* x11proto-randr-dev
* x11proto-render-dev
* x11proto-video-dev
* x11proto-xext-dev
* x11proto-xf86dga-dev
* x11proto-xf86dri-dev
* x11proto-xf86misc-dev
* x11proto-xinerama-dev
* xserver-xorg-dev (>= 2:1.1.1)
第二步:在終端輸入下命令,進行sis驅動安裝。
sudo apt-get install xserver-xorg-video-sis
第三部:打開終端輸入sudo emacs /etc/X11/xorg.conf,修改如下,保存退出,重啟X.
Section "Monitor"
Identifier "Configured Monitor"
Option "DPMS" "yes"
EndSection
Section "Screen"
Identifier "Default Screen"
Device "Configured Video Device"
Monitor "Configured Monitor"
DefaultDepth 24
SubSection "Display"
Depth 24
Modes "1024x768"
EndSubSection
EndSection
Section "Device"
Identifier "Configured Video Device"
Driver "sis"
BusID "PCI:1:0:0"
Option "EnableSiSCtrl" "yes"
Option "XvDefaultAdaptor" "Blitter"
Screen 0
EndSection
Section "ServerFlags"
Option "DontZap" "True"
EndSection
阅读(1256) | 评论(1) | 转发(0) |