分页: 39 / 70

发表于 : 2007-07-18 13:54
zhuqin_83
magiciany
你又有问题了?上面说修改bios里的显存大小,或者修改xorg.conf自己加一段。

发表于 : 2007-07-18 19:04
ppcrx
还是不会搞啊.................

发表于 : 2007-07-19 0:51
zhuqin_83
ppcrx
不着急,才来嘛,慢慢看 :D

发表于 : 2007-07-20 10:02
nicky
Linux x86 Display Driver 8.39.4 出来了。
http://ati.amd.com/support/drivers/linu ... adeon.html

发表于 : 2007-07-20 10:46
zhuqin_83
我早知道了,但是有很多问题,所以不更新了。

发表于 : 2007-07-20 11:33
freeubuntu
启禀楼主,我的系统是ubuntu7.04,显卡是ati radeon 9100第一第二种方法似乎都不合适阿!
经过对这两中方法的无数次失败,我自己下了个ati-driver-installer-8.28.8.run 尝试用第二种方法自己编译并安装,
但是在建创建deb包 时报错如下:
root@freedom-desktop:/home/freedom# sh ati-driver-installer-8.28.8.run --buildpkg Ubuntu/feisty
Creating directory fglrx-install
Verifying archive integrity... All good.
Uncompressing ATI Proprietary Linux Driver-8.28.8.....................................................................................................................................................................................................................................................................................................................................................................................................................................................................................
-e ==================================================
-e ATI Technologies Linux Driver Installer/Packager
-e ==================================================
./ati-installer.sh: 165: Syntax error: Bad substitution
Removing temporary directory: fglrx-install

请问如何解决呢?

发表于 : 2007-07-20 12:20
zhuqin_83
怎么个用第一种方法不行?自己编译,恐怕是因为这个驱动不支持新的内核,所以你还是得用源里的。

发表于 : 2007-07-20 14:49
freeubuntu
安装自带驱动,feisty自带的是8.34.8驱动,而8.34.8不支持radeon 9100的显卡。

发表于 : 2007-07-20 21:41
zhuqin_83
所以你只能用开源驱动,应该不错的了。

发表于 : 2007-07-21 8:31
freeubuntu
这样吧,我把我的每一步操作步骤,结果 和xorg.conf都发上来,您看看中间有什么错误,
1,sudo apt-get update
结果:正常
.........
Hit http://ubuntu.cn99.com feisty-backports/multiverse Sources
Fetched 5B in 5s (1B/s)
Reading package lists... Done
2,sudo apt-get install linux-restricted-modules-$(uname -r)
结果:正常
Reading package lists... Done
Building dependency tree
Reading state information... Done
linux-restricted-modules-2.6.20-16-generic is already the newest version.
0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
3,sudo apt-get install xorg-driver-fglrx fglrx-control
结果:正常
Selecting previously deselected package fglrx-control.
Unpacking fglrx-control (from .../fglrx-control_8.34.8+2.6.20.5-16.29_i386.deb) ...
Setting up xorg-driver-fglrx (7.1.0-8.34.8+2.6.20.5-16.29) ...
Setting up fglrx-control (8.34.8+2.6.20.5-16.29) ...
4,sudo depmod -a

5, sudo dpkg-reconfigure xserver-xorg
进入蓝屏界面,开始选择fglrx,其他默认,
结果如下:(不知道是否正常)
xserver-xorg postinst warning: overwriting possibly-customised configuration
file; backup in /etc/X11/xorg.conf.20070721081914
6, sudo aticonfig --ovt=Xv
结果如下:(不知道是否正常)
Warning: Option 'VideoOverlay' doesn't affect running session.
Warning: Option 'OpenGLOverlay' doesn't affect running session.
Using /etc/X11/xorg.conf
Saved back-up to /etc/X11/xorg.conf.fglrx-2
7,gedit /etc/X11/xorg.conf
添加代码,
Section "ServerFlags"
Option "AIGLX" "off"
EndSection

现在我的xorg.conf如下
# /etc/X11/xorg.conf (xorg 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(5) 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.
#
# 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 "ServerLayout"
Identifier "Default Layout"
Screen "Default Screen" 0 0
InputDevice "Generic Keyboard"
InputDevice "Configured Mouse"
InputDevice "stylus" "SendCoreEvents"
InputDevice "cursor" "SendCoreEvents"
InputDevice "eraser" "SendCoreEvents"
EndSection

Section "Files"

# path to defoma fonts
FontPath "/usr/share/fonts/X11/misc"
FontPath "/usr/share/fonts/X11/cyrillic"
FontPath "/usr/share/fonts/X11/100dpi/:unscaled"
FontPath "/usr/share/fonts/X11/75dpi/:unscaled"
FontPath "/usr/share/fonts/X11/Type1"
FontPath "/usr/share/fonts/X11/100dpi"
FontPath "/usr/share/fonts/X11/75dpi"
FontPath "/var/lib/defoma/x-ttcidfont-conf.d/dirs/TrueType"
EndSection

Section "Module"
Load "bitmap"
Load "ddc"
Load "dri"
Load "extmod"
Load "freetype"
Load "glx"
Load "int10"
Load "vbe"
EndSection

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 "stylus"
Driver "wacom"
Option "Device" "/dev/input/wacom"
Option "Type" "stylus"
Option "ForceDevice" "ISDV4" # Tablet PC ONLY
EndSection

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

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

Section "Monitor"
Identifier "Generic Monitor"
HorizSync 28.0 - 51.0
VertRefresh 43.0 - 60.0
Option "DPMS"
EndSection

Section "Device"
Identifier "Generic Video Card"
Driver "fglrx"
Option "VideoOverlay" "on"
Option "OpenGLOverlay" "off"
BusID "PCI:2:0:0"
EndSection

Section "Screen"
Identifier "Default Screen"
Device "Generic Video Card"
Monitor "Generic Monitor"
DefaultDepth 24
SubSection "Display"
Depth 1
Modes "1024x768" "800x600" "640x480"
EndSubSection
SubSection "Display"
Depth 4
Modes "1024x768" "800x600" "640x480"
EndSubSection
SubSection "Display"
Depth 8
Modes "1024x768" "800x600" "640x480"
EndSubSection
SubSection "Display"
Depth 15
Modes "1024x768" "800x600" "640x480"
EndSubSection
SubSection "Display"
Depth 16
Modes "1024x768" "800x600" "640x480"
EndSubSection
SubSection "Display"
Depth 24
Modes "1024x768" "800x600" "640x480"
EndSubSection
EndSection

Section "DRI"
Mode 0666
EndSection

Section "Extensions"
Option "Composite" "0"
EndSection

Section "ServerFlags"
Option "AIGLX" "off"
EndSection

上面的先发了,现在从起

发表于 : 2007-07-21 8:37
zhuqin_83
没错。
我不是说了嘛,你的显卡只能用老的驱动,但是老驱动不支持新内核,所以你只能用开源驱动。

发表于 : 2007-07-21 8:45
freeubuntu
进不了,xwindow,于是,

到tty1中,

cd /etc/X11

cp -a xorg.conf.bank xorg.conf

重启

进入xwindow

发表于 : 2007-07-21 8:46
soarlin
感谢楼主的共享 不错 加油!!!!!!

发表于 : 2007-07-21 8:51
freeubuntu
分辨率还是800*600很是郁闷

发表于 : 2007-07-21 8:56
freeubuntu
如何用开源驱动?