Advertisement
Guest User

F19 Fix ATI Fedora Forum

a guest
Jul 11th, 2013
3,126
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.70 KB | None | 0 0
  1. 1. Remove FGLRX
  2. If you used the rpmfusion like most of you probably did you will need to remove the installed catalyst rpm's. You can query your installed catalyst rpm's by querying rpm with
  3.  
  4. # rpm -qa | grep -i catalyst
  5.  
  6. or just use my quick command
  7. $ su -
  8. Enter Password:
  9. [root@localhost]# yum update && yum upgrade
  10. [root@localhost]# yum remove xorg-x11-drv-catalyst xorg-x11-drv-catalyst-libs* akmod-catalyst* kmod-catalyst* -y
  11.  
  12. 2. install/reinstall mesa lib's
  13. [root@localhost]# yum reinstall mesa-libGL*
  14.  
  15. and also install the 32 bit mesa lib and mesa video driver while you are at it
  16. [root@localhost]# yum install mesa-libGL.i686 mesa-dri-drivers -y
  17. [root@localhost]# mv /etc/X11/xorg.conf /etc/X11/xorg.conf.bak
  18.  
  19. reboot
  20.  
  21. 3. Get the driver from the ati/amd website
  22. [jwele@localhost]$ cd ~
  23. [jwele@localhost]$ wget http://www2.ati.com/drivers/beta/amd-driver-installer-catalyst-13-6-beta-x86.x86_64.zip
  24. [jwele@localhost]$ unzip amd-driver-installer-catalyst-13-6-beta-x86.x86_64.zip
  25. [jwele@localhost]$ su -
  26. [root@localhost]#
  27.  
  28. Now navigate to where you downloaded the file. It should be your user's 'Download' directory.
  29. [root@localhost]# chmod u+x amd-driver-installer-catalyst-13-6-beta-x86.x86_64.run
  30. [root@localhost]# ./amd-driver-installer-catalyst-13-6-beta-x86.x86_64.run
  31.  
  32. follow the default instructions. Automatic not custom. When it finishes installing check the log file for errors. It should ask if you want to see the file at the end of the installation. Before you reboot you need to make sure to use aticonfig to configure xorg
  33. [root@localhost]# aticonfig --initial
  34.  
  35. now reboot and everything should work and you may have a watermark. Google how to fix it if you encounter that.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement