LinuxQuestions.org
Help answer threads with 0 replies.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Slackware
User Name
Password
Slackware This Forum is for the discussion of Slackware Linux.

Notices


Reply
  Search this Thread
Old 11-15-2003, 02:05 PM   #1
no noob_slacker
LQ Newbie
 
Registered: Nov 2003
Posts: 17

Rep: Reputation: 0
9700 and slack 9.1


I got slackware 9.1 yesterday with no previous experience of the OS. The prolem is getting to work ATI 9700 on my desktop. I am using Gnome. I downloaded the fgl4.3 drivers in rpms. run the rpm file and found this:
bash-2.05b# rpm -i --force fglrx-glc22-4.3.0-3.2.8.i586.rpm
error: failed dependencies:
/bin/sh is needed by fglrx-glc22-4.3.0-3.2.8
/bin/sh is needed by fglrx-glc22-4.3.0-3.2.8
/bin/sh is needed by fglrx-glc22-4.3.0-3.2.8
/bin/sh is needed by fglrx-glc22-4.3.0-3.2.8
ld-linux.so.2 is needed by fglrx-glc22-4.3.0-3.2.8
libc.so.6 is needed by fglrx-glc22-4.3.0-3.2.8
libdl.so.2 is needed by fglrx-glc22-4.3.0-3.2.8
libICE.so.6 is needed by fglrx-glc22-4.3.0-3.2.8
libm.so.6 is needed by fglrx-glc22-4.3.0-3.2.8
libpthread.so.0 is needed by fglrx-glc22-4.3.0-3.2.8
libSM.so.6 is needed by fglrx-glc22-4.3.0-3.2.8
libX11.so.6 is needed by fglrx-glc22-4.3.0-3.2.8
libXaw.so.7 is needed by fglrx-glc22-4.3.0-3.2.8
libXext.so.6 is needed by fglrx-glc22-4.3.0-3.2.8
libXmu.so.6 is needed by fglrx-glc22-4.3.0-3.2.8
libXpm.so.4 is needed by fglrx-glc22-4.3.0-3.2.8
libXt.so.6 is needed by fglrx-glc22-4.3.0-3.2.8
/bin/bash is needed by fglrx-glc22-4.3.0-3.2.8
libc.so.6(GLIBC_2.0) is needed by fglrx-glc22-4.3.0-3.2.8
libc.so.6(GLIBC_2.1) is needed by fglrx-glc22-4.3.0-3.2.8
libc.so.6(GLIBC_2.1.3) is needed by fglrx-glc22-4.3.0-3.2.8
libdl.so.2(GLIBC_2.0) is needed by fglrx-glc22-4.3.0-3.2.8
libdl.so.2(GLIBC_2.1) is needed by fglrx-glc22-4.3.0-3.2.8
libm.so.6(GLIBC_2.0) is needed by fglrx-glc22-4.3.0-3.2.8
libpthread.so.0(GLIBC_2.0) is needed by fglrx-glc22-4.3.0-3.2.8
bash-2.05b#

now what do i need to do. Could anyone help please. Also I have Sound Blaster Audigy and it doesnt work. I mean i cant hera any sound even on elsa.
 
Old 11-15-2003, 02:19 PM   #2
Tabibito
LQ Newbie
 
Registered: Nov 2003
Location: Edmonton, AB, Canada
Distribution: Slackware 9.1
Posts: 7

Rep: Reputation: 0
Don't use RPM

Convert the install file to a .tgz with rpm2tgz and then run installpkg
 
Old 11-15-2003, 02:21 PM   #3
no noob_slacker
LQ Newbie
 
Registered: Nov 2003
Posts: 17

Original Poster
Rep: Reputation: 0
I did that as well but then what eslse should I do? I did it from the pkginstall utility.
 
Old 11-15-2003, 02:40 PM   #4
Tabibito
LQ Newbie
 
Registered: Nov 2003
Location: Edmonton, AB, Canada
Distribution: Slackware 9.1
Posts: 7

Rep: Reputation: 0
Heh, right, slipped my mind to give you the last steps.

you need to run /lib/modules/fglrx/build_mod/make.sh
and then /lib/modules/fglrx/make_install.sh

Any further than that and you've got to consult someone a little less green. I'm still a newb at this, and the last step gave me an error I've been fighting with for a while
 
Old 11-15-2003, 02:41 PM   #5
no noob_slacker
LQ Newbie
 
Registered: Nov 2003
Posts: 17

Original Poster
Rep: Reputation: 0
yo thanks for the reply dude. I'll try blow my brains and eyes while try to figure stuff out. anyways time for some counter strike.:P
 
Old 11-15-2003, 04:59 PM   #6
no noob_slacker
LQ Newbie
 
Registered: Nov 2003
Posts: 17

Original Poster
Rep: Reputation: 0
When I ran

/lib/modules/fglrx/build_mod/make.sh
and then /lib/modules/fglrx/make_install.sh

it gave me this missing library. How can i fix it?

bash-2.05b# /lib/modules/fglrx/build_mod/make.sh
ATI module generator V 2.0
==========================
initializing...
firegl_public.c: required file is missing in build directory
bash-2.05b#
 
Old 11-15-2003, 07:24 PM   #7
DaOne
Member
 
Registered: Jan 2003
Location: USA
Distribution: Slackware
Posts: 498

Rep: Reputation: 30
Don't use the rpm package to install. Instead, do
rpm2tgz packagename.rpm.
This will convert it to a .tgz file.
Copy the .tgz file to /root
Unpack the contents with
tar xzvf packagename.tgz
Then cd to /lib/modules/fglrx/build_mod and do
./make.sh
Then cd to /lib/modules/fglrx and do
./make_install.sh
Hopefully it will install error free. Then just load agpgart and fglrx...modprobe agpgart, modprobe fglrx.
Then run fglrxconfig and enter the appropriate settings.
Then, startx.
 
Old 11-16-2003, 02:51 AM   #8
no noob_slacker
LQ Newbie
 
Registered: Nov 2003
Posts: 17

Original Poster
Rep: Reputation: 0
I did all what you said till


rpm2tgz packagename.rpm.

tar xzvf packagename.tgz
Then cd to /lib/modules/fglrx/build_mod and do
./make.sh
Then cd to /lib/modules/fglrx and do
./make_install.sh

but how do I load agpgart and fglrx...modprobe agpgart, modprobe fglrx.
If slack works fine I'll use (My craposoft) only for games hehe.. :P.

Last edited by no noob_slacker; 11-16-2003 at 10:24 AM.
 
Old 11-16-2003, 12:43 PM   #9
no noob_slacker
LQ Newbie
 
Registered: Nov 2003
Posts: 17

Original Poster
Rep: Reputation: 0
Still no success. I see no agpart modules loaded. Could someone please tell how to load these modules.
 
Old 11-16-2003, 04:01 PM   #10
DaOne
Member
 
Registered: Jan 2003
Location: USA
Distribution: Slackware
Posts: 498

Rep: Reputation: 30
Quote:
Originally posted by no noob_slacker
Still no success. I see no agpart modules loaded. Could someone please tell how to load these modules.
2 things...once the rpm is converted to .tgz, did you cp ???.tgz /root?
Then tar xzvf ???.tgz
Then cd to /lib/modules/fglrx/build_mod and do
./make.sh
Then cd to /lib/modules/fglrx and do
./make_install.sh

Once this is done...
modprobe agpgart
modprobe fglrx
Then run fglrxconfig.

HTH....
 
Old 11-17-2003, 01:31 AM   #11
Darktyco
Member
 
Registered: Aug 2003
Location: michigan
Distribution: slackware
Posts: 59

Rep: Reputation: 15
I know some of these steps are a bit redundant, but let me list exactly the steps I followed for installing my 9800 on 9.1 with the 3.8 ati drivers:

0) First of all, I don't recommend being in X-windows at all
1) rpm2tar firegl-whatever.rpm
2) installpkg firegl-whatever.tgz
3) /lib/modules/fglrx/build_mod/make.sh
4) /lib/modules/fglrx/make_install.sh
5) fglrxconfig - (when it asks you if you want to use internal or external AGP, choose EXTERNAL).
6) Copy the file it generated (XF86Config-4 I think) into /etc/X11/ (I think) overwriting the config file already in there (back it up first).
7) modprobe agpgart
8) startx

That worked for me, although I had to fiddle a little bit since I accidently set it to internal agp at first.
 
  


Reply



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 Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
Radeon 9700 Pro Problems on Slack 10, 2.4 Series Kernel Ehuwiko Linux - Hardware 0 08-26-2004 05:50 AM
Slack 9.1 Kern 2.6.5 , Xfree 4.4 , Radeon 9700 MentalProblems Slackware 3 04-28-2004 08:56 PM
Radeon 9700 not getting 3D KillerFry Linux - Hardware 10 03-05-2004 11:01 AM
Slack w/ 9700 and Mesa drivers!!!! th3_d0c Slackware 2 02-15-2004 11:31 AM
ATI Rad 9700 and Slack 9.0 KillerFry Linux - Hardware 2 09-25-2003 04:59 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Slackware

All times are GMT -5. The time now is 04:48 PM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration