openSUSE Forums > Hardware » Newbie! ATI Help!

Go Back   openSUSE Forums > Hardware
Forums FAQ Members List Search Today's Posts Mark Forums Read


Hardware Questions about drivers, peripheral cabling, configuration

Reply
Page 2 of 2 1 2
 
LinkBack Thread Tools Display Modes
  #11 (permalink)  
Old 16-Sep-2009, 07:41
Puzzled Penguin
 
Join Date: Sep 2009
Posts: 7
thereaper hasn't been rated much yet
Default Re: Newbie! ATI Help!

HORYCOW! I got it working. I will post back shortly to let everyone know how!!!
Reply With Quote
  #12 (permalink)  
Old 16-Sep-2009, 11:02
Puzzled Penguin
 
Join Date: Sep 2009
Location: Prague
Posts: 24
tadeas_moravec hasn't been rated much yet
Send a message via ICQ to tadeas_moravec
Default Re: Newbie! ATI Help!

Quote:
Originally Posted by Akoellh View Post
True but openSUSE 11.1 also comes with version 1.5.
Oh, sorry for the disinformation. My fault.
Anyway, when I realized that it could work, I've tried it (via the install script on ati website), but the computer just restarted when trying to run X. Probably it doesn't like my 2.6.31 kernel...

I'm glad, thereaper, that you solved it and I'm looking forward to see how did you do it.
Reply With Quote
  #13 (permalink)  
Old 16-Sep-2009, 11:07
Wise Penguin
 
Join Date: Mar 2009
Posts: 1,824
Akoellh is a reputation jewel in the roughAkoellh is a reputation jewel in the roughAkoellh is a reputation jewel in the roughAkoellh is a reputation jewel in the roughAkoellh is a reputation jewel in the rough
Default Re: Newbie! ATI Help!

Well, at least I strongly _suspect_ that building the catalyst 9.3 kernel module against 2.6.31 won't work without patches (if at all).
__________________
“Never attribute to malice that which can be adequately explained by stupidity.” (R.J. Hanlon)
Reply With Quote
  #14 (permalink)  
Old 16-Sep-2009, 13:30
Puzzled Penguin
 
Join Date: Sep 2009
Posts: 7
thereaper hasn't been rated much yet
Lightbulb Re: Newbie! ATI Help!

Step by step instructions for installing the ATI Radeon x1200 integrated graphics card (proprietary driver installation) on openSUSE 11.1:

Code:
Note: This was done on a Toshiba Satellite A215 which has a 64 bit Archetechture CPU and HAS NOT been tested on a 32 bit CPU)
First, make sure you have the following software packages installed via YaST (go to Computer->YaST->Manage Software [then select packages in the "Available" tab that are missing from the "Installed" tab]):

Code:
kernel-source
compat-libstdc++
libstdc++
libstdc++-devel
libgcc
fontconfig-devel
freetype
freetype2-devel
zlib-devel
gcc
patch
compat-32bit
qt3-32bit
xorg-x11-libs-32bit
xorg-x11-devel-32bit
Mesa-32bit
Mesa-devel-32bit
fontconfig-32bit
expat-32bit
freetype2-32bit
zlib-32bit
Next, run the following commands in the command line (terminal) by pressing "Ctrl+Alt+F1" (this prepares the kernel for the installation):

Code:
# su
   password
   # cd /usr/src/linux
   # make mrproper
   # make cloneconfig
   # make modules_prepare
   # make clean
After you are done, type startx to restart the X-Server.

Now, if you have tried to install the proprietary driver in the past, you should run the following in the command line:

Code:
# rpm -e $(rpm -qa '*fglrx*')
Even if you have not tried to install the driver in the past, gcc will have attempted to install it if you had to download gcc. Thus, it's probably a good idea to go ahead and run that command anyway.

Next, prepare SaX2 by entering the following in the command line:

Code:
SaX2 -a
Now that we have SaX2 prepared, the kernel prepared, and any previous version of "fglrx" uninstalled, we need to download the driver. Go to

HTML Code:
http://support.amd.com/us/gpudownload/Pages/index.aspx
Select Linux->x86_64->Integrated/Motherboard->Radeon Xpress 1250 (yes I know you have an x1200), and select GO! When the new page loads go all the way to the bottom and download the driver. Now run:

Code:
su -
# sh ati*.run --listpkg
# cd /directory_where_you_generated_the_rpm
# rpm -Uvh fgl*.rpm
When the installer appears select Generate Distribution Specific Driver Package->SUSE Packages->SUSE/SUSE11.1 AMD 64. When that is done, run:

Code:
# aticonfig --initial --input=/etc/X11/xorg.conf
Now reboot. When the system restarts and you see the GRUB screen, press backspace to delete "vga=317," (or whatever it may say) press "3," and hit enter. This will take you to the command line that you are now beginning to love. Run the following:

Code:
# sax2 -r -m 0=fglrx
Now one more time, just to verify the xorg.conf file, run:

Code:
# aticonfig --initial --input=/etc/X11/xorg.conf
That should do it! If you want to double check though, open a terminal and enter:

Code:
fglrxinfo
This should show the card as an ATI x1200 and should also say "fglrx." If it does not, you probably missed a step. If that happens run:

Code:
# rpm -e $(rpm -qa '*fglrx*')
# startx
This should remove the faulty driver installation and let you begin again from the X-Server.

On one final note, MAKE SURE THAT YOU HAVE ALL THE NECESSARY SOFTWARE PACKAGES LISTED ABOVE INSTALLED BEFORE YOU INSTALL THE DRIVER!!!

Good Luck,
thereaper
Reply With Quote
  #15 (permalink)  
Old 16-Sep-2009, 13:48
swerdna's Avatar
Global Moderator
 
Join Date: Mar 2008
Location: Oz
Posts: 4,870
swerdna is a reputation jewel in the roughswerdna is a reputation jewel in the roughswerdna is a reputation jewel in the roughswerdna is a reputation jewel in the roughswerdna is a reputation jewel in the rough
Default Re: Newbie! ATI Help!

Congratulations -- that's a fine achievement.
__________________
Drop in and visit some time.
Reply With Quote
  #16 (permalink)  
Old 16-Sep-2009, 15:35
Puzzled Penguin
 
Join Date: Jun 2008
Posts: 39
cmcgrath5035 hasn't been rated much yet
Default Re: Newbie! ATI Help!

To: thereaper
Most promising update to the ATI mess in a long time.
Thanks

Where did you find
compat-libstdc++
and
expat-32 bit?

They don't show on 11.1 repos

Last edited by cmcgrath5035; 16-Sep-2009 at 15:37. Reason: typo
Reply With Quote
  #17 (permalink)  
Old 17-Sep-2009, 01:20
Puzzled Penguin
 
Join Date: Sep 2009
Posts: 7
thereaper hasn't been rated much yet
Smile Re: Newbie! ATI Help!

Quote:
Originally Posted by cmcgrath5035 View Post

Where did you find
compat-libstdc++
and
expat-32 bit?

They don't show on 11.1 repos
I downloaded all software packages that were similar to the packages you listed. If you install compat (expat is included in your installation and is a hybrid version of expat-32bit and expat-x86_64) you should be able to run the ATI software package no problem.

thereaper
Reply With Quote
Reply
Page 2 of 2 1 2

Bookmarks

Tags
ati, laptop drivers, toshiba a215, x1200


Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On




 

Search Engine Friendly URLs by vBSEO 3.3.0 RC2