LinuxQuestions.org
Latest LQ Deal: Latest LQ Deals
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 04-09-2004, 02:41 PM   #1
NaTaS
LQ Newbie
 
Registered: Oct 2003
Location: Rhode Island, USA
Distribution: Slackware 9.1
Posts: 28

Rep: Reputation: 15
.run???


I just downloaded Wolfenstein: Enemy Territory, but it's a .run file. How do I go about installing a .run file?
 
Old 04-09-2004, 02:46 PM   #2
187807
Member
 
Registered: Oct 2003
Location: North Carolina, USA
Distribution: Slackware 11
Posts: 174

Rep: Reputation: 30
Um, did you try running it?

Seriously, just issue:

chmod a+x et-linux-2.55.x86.run (or whatever the file name is)

then

./et-linux-2.55.x86.run

(period then forward-slash then the filename to run it).
 
Old 04-09-2004, 03:15 PM   #3
NaTaS
LQ Newbie
 
Registered: Oct 2003
Location: Rhode Island, USA
Distribution: Slackware 9.1
Posts: 28

Original Poster
Rep: Reputation: 15
i didn't know about the chmod part, but when i ran it before it just opened as a text file in kwrite.
what exactly does chmod do? change it to an executable file?


and when I try to install the ATI drivers from ati.com.. i get this error

"error: failed dependencies:
/bin/sh is needed by fglrx-4.3.0-3.7.6
/bin/sh is needed by fglrx-4.3.0-3.7.6
/bin/sh is needed by fglrx-4.3.0-3.7.6
/bin/sh is needed by fglrx-4.3.0-3.7.6
ld-linux.so.2 is needed by fglrx-4.3.0-3.7.6
libX11.so.6 is needed by fglrx-4.3.0-3.7.6
libXext.so.6 is needed by fglrx-4.3.0-3.7.6
libc.so.6 is needed by fglrx-4.3.0-3.7.6
libdl.so.2 is needed by fglrx-4.3.0-3.7.6
libm.so.6 is needed by fglrx-4.3.0-3.7.6
libpthread.so.0 is needed by fglrx-4.3.0-3.7.6
libc.so.6(GLIBC_2.0) is needed by fglrx-4.3.0-3.7.6
libc.so.6(GLIBC_2.1) is needed by fglrx-4.3.0-3.7.6
libc.so.6(GLIBC_2.1.3) is needed by fglrx-4.3.0-3.7.6
libm.so.6(GLIBC_2.0) is needed by fglrx-4.3.0-3.7.6
libpthread.so.0(GLIBC_2.0) is needed by fglrx-4.3.0-3.7.6
RESULT=1"

Is there a file i can download that includes most of these files?

Last edited by NaTaS; 04-09-2004 at 03:18 PM.
 
Old 04-09-2004, 03:57 PM   #4
nvn
Member
 
Registered: Apr 2003
Location: Sweden
Distribution: Slackware
Posts: 242

Rep: Reputation: 30
Quote:
Originally posted by NaTaS
what exactly does chmod do? change it to an executable file?
Quote:
'man chmod' told you
how it works
Quote:
Originally posted by NaTaS
Is there a file i can download that includes most of these files?
Quote:
ATI said

Before you install

Make sure the following software is already installed on your system:

* glibc version 2.2 or 2.3
* XFree86 version 4.1.0, 4.2.0, or 4.3.0
..so if you indeed have proper versions of glibc/x installed, the errors seem very odd (though I'm insanely tired right now, so I might be missing something obvious ). I'm using a Geforce FX5900 myself (my Radeon 9700 Pro broke before I got it to work properly), so I can't really help you out...but there are loads of threads about the ATI-drivers and related issues.
 
Old 04-09-2004, 04:04 PM   #5
NaTaS
LQ Newbie
 
Registered: Oct 2003
Location: Rhode Island, USA
Distribution: Slackware 9.1
Posts: 28

Original Poster
Rep: Reputation: 15
DOH! I think its the "* glibc version 2.2 or 2.3" I'll go install and see if that works.
 
Old 04-10-2004, 02:01 PM   #6
Shade
Senior Member
 
Registered: Mar 2003
Location: Burke, VA
Distribution: RHEL, Slackware, Ubuntu, Fedora
Posts: 1,418
Blog Entries: 1

Rep: Reputation: 46
NaTaS... You'll always get dependency errors when trying to install an RPM in slackware. Slackware has no rpm database. You probably already have all those libraries and programs, but rpm doesn't know about them.

The solution:

rpm2tgz fglrx(whatever).rpm
installpkg fglrx(whatever).rpm

There you go, buddy.

Now read up a bitmore on getting those drivers to work

--Shade
 
Old 04-10-2004, 02:37 PM   #7
NaTaS
LQ Newbie
 
Registered: Oct 2003
Location: Rhode Island, USA
Distribution: Slackware 9.1
Posts: 28

Original Poster
Rep: Reputation: 15
Hrmm...maybe that's why every damn rpm i try doesn't work? lol

Well, Gaim's RPM did work :-p

thanks a bunch man, ill go try it right now!
 
Old 04-10-2004, 02:50 PM   #8
NaTaS
LQ Newbie
 
Registered: Oct 2003
Location: Rhode Island, USA
Distribution: Slackware 9.1
Posts: 28

Original Poster
Rep: Reputation: 15
ok, it seemed to work, it didn't give me any errors. Is there a way to make sure they are the drivers X is using, or make sure they are installed?

**edit** scratch that, i ran the ati configure, and it seems to have worked because now KDE loads a lot faster. Thanks for the help!

Last edited by NaTaS; 04-10-2004 at 03:18 PM.
 
Old 04-10-2004, 11:50 PM   #9
Shade
Senior Member
 
Registered: Mar 2003
Location: Burke, VA
Distribution: RHEL, Slackware, Ubuntu, Fedora
Posts: 1,418
Blog Entries: 1

Rep: Reputation: 46
You can use glxinfo to figure out what's going on

glxgears gives you a primitive benchmark for 3d acceleration.

glxinfo will have a line near the top you should look for:

Direct Rendering: Yes

That's the ticket

--Shade
 
Old 04-11-2004, 08:59 AM   #10
NaTaS
LQ Newbie
 
Registered: Oct 2003
Location: Rhode Island, USA
Distribution: Slackware 9.1
Posts: 28

Original Poster
Rep: Reputation: 15
this is what I get when entering those at the command line.

"glxinfo
name of display: :0.0
Xlib: extension "GLX" missing on display ":0.0".
Xlib: extension "GLX" missing on display ":0.0".
Xlib: extension "GLX" missing on display ":0.0".
Error: couldn't find RGB GLX visual

visual x bf lv rg d st colorbuffer ax dp st accumbuffer ms cav
id dep cl sp sz l ci b ro r g b a bf th cl r g b a ns b eat
----------------------------------------------------------------------
Xlib: extension "GLX" missing on display ":0.0".
Xlib: extension "GLX" missing on display ":0.0".
0x21 24 tc 1 0 0 c . . 0 0 0 0 0 0 0 0 0 0 0 0 0 None"

"glxgears
Xlib: extension "GLX" missing on display ":0.0".
Error: couldn't get an RGB, Double-buffered visual"
 
Old 04-11-2004, 09:49 AM   #11
nvn
Member
 
Registered: Apr 2003
Location: Sweden
Distribution: Slackware
Posts: 242

Rep: Reputation: 30
I'm not that familiar with the ATI drivers (as previously stated) but I remember seeing something about 'fglrxgears' or something...you might want to try that.
 
Old 04-11-2004, 02:47 PM   #12
NaTaS
LQ Newbie
 
Registered: Oct 2003
Location: Rhode Island, USA
Distribution: Slackware 9.1
Posts: 28

Original Poster
Rep: Reputation: 15
I think I know what the problem is. When I ran fglrxconfig, the ATI configure file, it created a new fx86config-4 file. But, it saved it to /home/nathan, and I know that isn't where it is supposed to be. So where do I need to put this file?
 
Old 04-11-2004, 04:16 PM   #13
ringwraith
Senior Member
 
Registered: Sep 2003
Location: Indiana
Distribution: Slackware 15.0
Posts: 1,272

Rep: Reputation: 65
X reads the file located at /etc/X11/XF86Config
 
Old 04-11-2004, 04:48 PM   #14
NaTaS
LQ Newbie
 
Registered: Oct 2003
Location: Rhode Island, USA
Distribution: Slackware 9.1
Posts: 28

Original Poster
Rep: Reputation: 15
So, just open up XF86Config, and replace the text with that of XF86config-4 which was created by the ATI configuration?
 
  


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
Cannot get NVIDIA-Linux-x86_64-1.0-6629-pkg2.run to run properly doctorwebbox Linux - Hardware 0 02-06-2005 06:18 AM
Not able to run audio Cds (not MP3) and run VCDS.. satish427 Linux - Newbie 4 09-24-2004 11:27 PM
Trying to run photoshop in wine. Install, but wont run. bruno buys Linux - Software 14 07-15-2004 04:30 PM
will delphi run on winex ? (i cant run kylix3 :(( ) hunter_one Linux - Software 0 10-19-2003 08:41 AM
Java applets run fine in Konqueror, but won't run in MS IE. OAnimal Linux - Software 7 12-04-2002 06:32 AM

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

All times are GMT -5. The time now is 12:51 AM.

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