[问题]笔记本ati7500驱动问题

CPU/显卡/打印机/USB设备等硬件问题
回复
wlovec2008
帖子: 47
注册时间: 2006-10-06 3:55

[问题]笔记本ati7500驱动问题

#1

帖子 wlovec2008 » 2006-10-08 14:30

按照网上公布的ati驱动的安装方法下载了新的ati for linux驱动,但是在安装的过程中发现不支持我的ati7500,硬着头皮装完后,显卡没办法正确识别,成了ati9000,请问如何恢复原来的通用驱动?还是有对应ati7500的驱动?我是新手,能详细说明吗?谢谢,现在只要运行需要显卡的游戏就狂卡,郁闷阿
谢谢大家,google了几天都没找到
wlovec2008
帖子: 47
注册时间: 2006-10-06 3:55

#2

帖子 wlovec2008 » 2006-10-08 15:41

自己顶,不会要重装系统吧,汗一个,
jbug
帖子: 6
注册时间: 2006-06-02 15:56

#3

帖子 jbug » 2006-10-09 16:55

Xorg自带了Mobile 7500显卡的驱动, 配置/etc/X11/xorg.conf,用Radeon的Driver就好了, 我的笔记本也是M7500,配置如下。
Section "Device"
Identifier "ATI"
Driver "radeon"
Option "RenderAccel" "true"
Option "AGPMode" "4"
# Option "AGPFastWrite" "true"
Option "EnablePageFlip" "true"
BusID "PCI:1:0:0"
EndSection
wlovec2008
帖子: 47
注册时间: 2006-10-06 3:55

#4

帖子 wlovec2008 » 2006-10-09 16:58

多谢楼上的,解决中
wlovec2008
帖子: 47
注册时间: 2006-10-06 3:55

#5

帖子 wlovec2008 » 2006-10-09 20:18

用上面老兄的方法好像不行?显示xong.conf错误进不去xwindow,用ubuntu自己的恢复进的系统
jbug
帖子: 6
注册时间: 2006-06-02 15:56

#6

帖子 jbug » 2006-10-10 17:58

把错误贴出来!
wlovec2008
帖子: 47
注册时间: 2006-10-06 3:55

#7

帖子 wlovec2008 » 2006-10-12 14:25

呵呵,已经解决了
Section "Device"
Identifier "ATI"
Driver "radeon"
Option "RenderAccel" "true"
Option "AGPMode" "4"
# Option "AGPFastWrite" "true"
Option "EnablePageFlip" "true"
BusID "PCI:1:0:0"
EndSection

Section "Monitor"
Identifier "Generic Monitor"
Option "DPMS"
EndSection

Section "Screen"
Identifier "Default Screen"
Device "ATI"(这个地方也要修改)
Monitor "Generic Monitor"
DefaultDepth 24
SubSection "Display"
jbug
帖子: 6
注册时间: 2006-06-02 15:56

#8

帖子 jbug » 2006-10-12 17:38

恭喜! 可以将AIGLX配置上, 在XBUNTU上有篇文章, 讲在Mobile Radeon7500上配置AIGLX。AIGLX不怎么耗显卡, 只要你CPU够快! 我的Mobile P4 1.4配上了都很快, 只是看电影要占100%的CPU, 我估计只要cpu能达到PM1.4的水平, 跑AIGLX应该很流畅!
hgamber
帖子: 34
注册时间: 2007-07-29 11:35

#9

帖子 hgamber » 2008-04-16 16:25

jbug
你好我的系统装成了,不过就是卡,我把我的配置给出来,看看怎么配置
Section "InputDevice"
Identifier "Generic Keyboard"
Driver "kbd"
Option "CoreKeyboard"
Option "XkbRules" "xorg"
Option "XkbModel" "pc105"
Option "XkbLayout" "us"
EndSection

Section "InputDevice"
Identifier "Configured Mouse"
Driver "mouse"
Option "CorePointer"
Option "Device" "/dev/input/mice"
Option "Protocol" "ImPS/2"
Option "ZAxisMapping" "4 5"
Option "Emulate3Buttons" "true"
EndSection

Section "InputDevice"
Identifier "Synaptics Touchpad"
Driver "synaptics"
Option "SendCoreEvents" "true"
Option "Device" "/dev/psaux"
Option "Protocol" "auto-dev"
Option "HorizEdgeScroll" "0"
EndSection

Section "InputDevice"
Driver "wacom"
Identifier "stylus"
Option "Device" "/dev/input/wacom"
Option "Type" "stylus"
Option "ForceDevice" "ISDV4" # Tablet PC ONLY
EndSection

Section "InputDevice"
Driver "wacom"
Identifier "eraser"
Option "Device" "/dev/input/wacom"
Option "Type" "eraser"
Option "ForceDevice" "ISDV4" # Tablet PC ONLY
EndSection

Section "InputDevice"
Driver "wacom"
Identifier "cursor"
Option "Device" "/dev/input/wacom"
Option "Type" "cursor"
Option "ForceDevice" "ISDV4" # Tablet PC ONLY
EndSection

Section "Device"
Identifier "ATI Technologies Inc Radeon Mobility M7 LW [Radeon Mobility 7500]"
Driver "ati"
BusID "PCI:1:0:0"
EndSection

Section "Monitor"
Identifier "通用显示器"
Option "DPMS"
EndSection

Section "Screen"
Identifier "Default Screen"
Device "ATI Technologies Inc Radeon Mobility M7 LW [Radeon Mobility 7500]"
Monitor "通用显示器"
DefaultDepth 24
SubSection "Display"
Modes "1024x768"
EndSubSection
EndSection

Section "ServerLayout"
Identifier "Default Layout"
Screen "Default Screen"
InputDevice "Generic Keyboard"
InputDevice "Configured Mouse"

# Uncomment if you have a wacom tablet
# InputDevice "stylus" "SendCoreEvents"
# InputDevice "cursor" "SendCoreEvents"
# InputDevice "eraser" "SendCoreEvents"
InputDevice "Synaptics Touchpad"
EndSection
hgamber
帖子: 34
注册时间: 2007-07-29 11:35

#10

帖子 hgamber » 2008-04-16 16:26

谢谢!
proyf
帖子: 6
注册时间: 2008-06-16 9:09

Re: [问题]笔记本ati7500驱动问题

#11

帖子 proyf » 2009-02-20 10:52

我把我的配置贴出来,朋友帮我看看,在线等

# 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 "Monitor"
Identifier "Configured Monitor"
EndSection

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

Section "Module"
Load "dri"
Load "GLcore"
EndSection

Section "Device"
Identifier "Configured Video Device"
Driver "vesa"
EndSection
回复