Chinaunix首页 | 论坛 | 博客
  • 博客访问: 38650
  • 博文数量: 12
  • 博客积分: 1425
  • 博客等级: 上尉
  • 技术积分: 150
  • 用 户 组: 普通用户
  • 注册时间: 2009-09-01 13:13
文章分类
文章存档

2011年(3)

2010年(5)

2009年(4)

我的朋友

分类: LINUX

2010-05-04 15:24:11

一、针对SIS显卡驱动问题
1. Extract these files.
2. Copy them to /usr/lib/xorg/modules/drivers
3. Edit /etc/X11/xorg.conf and set `Driver "sis671"` on the "Device" Section
具体说来就是将附件里的sis671_drv.la和sis671_drv.so两个文件复制到/usr/lib/xorg/modules/drivers(需要管理权限),然后在终端输入 sudo gedit /etc/X11/xorg.conf ,复制以下代码,保存后退出,重启即可。分辨率会自动调整到适合计算机的配置。

# xorg.conf (X.Org X Window System server configuration file)
#
# This file was generated by dexconf, the Debian X Configuration tool, using
# values from the debconf database.
#
# Edit this file with caution, and see the xorg.conf manual page.
# (Type "man xorg.conf" at the shell prompt.)
#
# This file is automatically updated on xserver-xorg package upgrades *only*
# if it has not been modified since the last upgrade of the xserver-xorg
# package.
#
# Note that some configuration settings that could be done previously
# in this file, now are automatically configured by the server and settings
# here are ignored.
#
# If you have edited this file but would like it to be automatically updated
# again, run the following command:
# sudo dpkg-reconfigure -phigh xserver-xorg

Section "Device"
    Identifier    "Configured Video Device"
        Driver "sis671"
EndSection

Section "Monitor"
    Identifier    "Configured Monitor"
EndSection

Section "Screen"
    Identifier    "Default Screen"
    Monitor        "Configured Monitor"
    Device        "Configured Video Device"
EndSection

附件提供驱动下载

二 、输入法问题
1、卸载Ibus
sudo apt-get autoremove ibus
2、安装fcitx
sudo apt-get install fcitx

三、Firefox设置
1、安装Flash插件
sudo apt-get install adobe-flashplugin
2、解决Flash中文乱码问题
编辑/etc/fonts/conf.d/49-sansserif.conf 文件
修改第18行,将

<edit name="family" mode="append_last">
            <string>sans-serif</string>
        </edit

修改为

<edit name="family" mode="append_last">
            <string>sans</string>
        </edit>

 
四、安装smplayer
1、开启 SMplayer Stable软件源
sudo add-apt-repository ppa:rvm/smplayer
2、安装
sudo aptitude install smplayer

参考文章:
Ubuntu 10.04 安装配置手记

sis671驱动on ubuntu 10.04 Lucid lynx
http://kylinygzeng.blog.163.com/blog/static/1312084492010362717617/

附件sis驱动
文件:xorg-driver-sis671-0.9.1-fixed-build.zip
大小:1232KB
下载:下载


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

chinaunix网友2010-08-17 14:32:24

ubuntu 10.04哪里来的xorg.conf文件。真不知道你有没有用过10.04。