Ubuntu的via集成显卡驱动


由于在Ubuntu下使用了via集成显卡,安装Ubuntu 7.04后刷新率只有60Hz

搜索到OpenChrome可以解决问题,适用于UniChrome显示芯片组(CLE266, KM400/KN400/KM400A/P4M800, CN400/PM800/PN800/PM880, K8M800, CN700/VM800/P4M800Pro, CX700…)

但相关文章里都说需要下载源码编译,不过试验发现有软件包可以直接下载安装

安装步骤:

1.系统 - 系统管理-新立得软件包管理器

(使用软件包管理器前最好参照Qref设置合适的源)

2.搜索”openchrome”

3.右键标记安装OpenChrome驱动及支持库

libviaxvmc1 (XvMC Libraries used by the Openchrome VIA driver )
libviaxvmpro1
xserver-xorg-video-openchrome (X.Org X server — VIA display driver)

4.应用

管理器会提示需要删除和安装的包,确定即可

5.备份并编辑配置文件

sudo cp /etc/X11/xorg.conf /etc/X11/xorg.conf.old
$gksu gedit /etc/X11/xorg.conf

(1)修改vesa为via

(2)在Section “Monitor”段里添加水平和垂直刷新率(可搜索显示器型号获取)

附xorg.conf相关段

Section “Device”
Identifier “通用显示卡”
Driver “via”
BusID “PCI:1:0:0″
EndSection

Section “Monitor”
Identifier “PH107E/V/S/G”
Option “DPMS”
HorizSync 30-71
VertRefresh 50-160
EndSection 

相关内容