Chinaunix首页 | 论坛 | 博客
  • 博客访问: 91243
  • 博文数量: 48
  • 博客积分: 2500
  • 博客等级: 少校
  • 技术积分: 440
  • 用 户 组: 普通用户
  • 注册时间: 2008-09-21 17:33
文章分类

全部博文(48)

文章存档

2011年(2)

2009年(17)

2008年(29)

我的朋友
最近访客

分类: LINUX

2009-05-14 21:39:28

一開始,安裝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

阅读(1244) | 评论(1) | 转发(0) |
给主人留下些什么吧!~~

chinaunix网友2009-07-15 18:39:31

楼主,我按照你的方法。还是不行。 我的显卡是sis 330. 请赐教