LinuxQuestions.org
Visit Jeremy's Blog.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Software > Linux - Games
User Name
Password
Linux - Games This forum is for all discussion relating to gaming in Linux.

Notices


Reply
  Search this Thread
Old 10-02-2004, 04:31 PM   #1
Rhatlinux
Member
 
Registered: Sep 2004
Distribution: Arch 0.7.1 (Noodle)
Posts: 128

Rep: Reputation: 15
Couldn't run Unreal Tournament (ut-bin). Is UT_DATA_PATH set?


This is the error message when I try to run UT. Is there a fix for this. (I am running slackware 10).
 
Old 10-02-2004, 07:37 PM   #2
zackarya
Member
 
Registered: Jul 2003
Distribution: OpenSuse 10, Debian
Posts: 152

Rep: Reputation: 30
UT

Have you checked to see if UT_DATA_PATH is set? I mean I know it's redundant to ask since that is the exact error but..... Try echo $UT_DATA_PATH and if it's not set you need to set it to the /UT/System folder I believe. Hope that helps.
 
Old 10-02-2004, 08:28 PM   #3
Rhatlinux
Member
 
Registered: Sep 2004
Distribution: Arch 0.7.1 (Noodle)
Posts: 128

Original Poster
Rep: Reputation: 15
I've tried "export UT_DATA_PATH=/usr/local/games/ut/System" and it works but as soon as I close the terminal, it doesn't work anymore when I try to run "ut". The command above seems to only set the UT_DATA_PATH temporarly.

Last edited by Rhatlinux; 10-02-2004 at 08:30 PM.
 
Old 10-05-2004, 04:30 AM   #4
ravage
LQ Newbie
 
Registered: Dec 2003
Distribution: Slackware 10.1, Yellow Dog 4.01
Posts: 4

Rep: Reputation: 0
edit your ut script

change this part
Code:
    # Is the awk/ls magic portable?
    if [ -L "$fullpath" ]; then
        fullpath="`ls -l "$fullpath" | awk '{print $11}'`"
    fi
to this
Code:
    # Is the sed/ls magic portable?
    if [ -L "$fullpath" ]; then
        fullpath=`ls -l "$fullpath" |sed -e 's/.* -> //' |sed -e 's/\*//'`
    fi
that should do the trick.
 
Old 10-05-2004, 06:36 AM   #5
Rhatlinux
Member
 
Registered: Sep 2004
Distribution: Arch 0.7.1 (Noodle)
Posts: 128

Original Poster
Rep: Reputation: 15
Where do I edit this?
 
Old 10-15-2004, 03:03 PM   #6
Wondre
LQ Newbie
 
Registered: Jan 2003
Location: SoCal
Distribution: SlackWare 10
Posts: 17

Rep: Reputation: 0
I followed Ravage's directions to edit the ut script file, and I'm up! (Uh, up and running UT on slackware (10) for the first time ever, that is.)

Kudos a-MUNDO, Ravage!!

Rhatlinux,

the ut script you need to edit is located in /usr/local/games/ut, and the file name is ut. (like calculus, it's obvious once you get it)

The other thing I had to do was to run from a Konsole window under KDE, to overcome the dreaded segmentation fault:

startx, then open a Konsole window, then type "ut". It's unreal.

I think the xwindows thing is necessary to get the glx opengl driver visible to the system. There's probably a way to do it from the login console without startx, but I'm too newbie to know.

I did go into the xwindows config file to make sure I had glx invoked, and the nvidia driver appropriate for my video card. Just following directions from nvidia.

Jammin. Now I have something I need that linux does better than winxp. Ut can't hardly run under xp on my laptop (dell M60): it keeps racing and pausing on a 2 second cycle. I'm sure it's some os "service" crap they installed when the IT guy set me up.

Smooth as silk on SlackWare!

Gotta get slackin now. Later
 
Old 05-12-2006, 07:10 PM   #7
Mr. Swillis
Member
 
Registered: Sep 2005
Location: The PNW
Distribution: Many. Slackware is the main reason I'm here though :)
Posts: 95

Rep: Reputation: 17
Also...

You should be able to run this from the "ut" executable in the install directory. For example:

cd /wherever/you/installed/ut
./ut


Your path will point to something like /usr/local/bin/ut which is a link to /wherever/you/installed/ut/ut. You could replace it with one of my little band-aid scripts like so:

su -
cd /usr/local/bin
rm ut
vi ut

#Begin ut script
cd /wherever/you/installed/ut
./ut
#End ut script, now save and quit

chmod 777 ut

Bam! Like I said, a "band-aid script", but it works.

Mr. Swillis
 
Old 11-22-2006, 02:51 AM   #8
DPSellyChan
LQ Newbie
 
Registered: Jan 2006
Location: Canada
Distribution: Fedora 7
Posts: 25

Rep: Reputation: 15
I followed the various steps outlined here, but now I'm getting an odd error...

Code:
kelly@sherry12:~/games/unrealtournament> ./ut
Unreal engine initialized
Bound to SDLDrv.so
Joystick [0] : Unknown Joystick
SDLClient initialized.
Bound to Render.so
Lighting subsystem initialized
Rendering initialized
LoadMap: Entry
Bound to Fire.so
Case-insensitive search: Botpack -> ..\System\BotPack.u
Bound to IpDrv.so
Game class is 'UTIntro'
Level is Level Entry.MyLevel
Bringing Level Entry.MyLevel up for play (0)...
InitGame:
Base Mutator is Entry.Mutator0
Browse: CityIntro.unr?Name=Player?Class=Botpack.TMale2?team=255?skin=SoldierSkins.blkt?Face=SoldierSkins.Othello
LoadMap: CityIntro.unr?Name=Player?Class=Botpack.TMale2?team=255?skin=SoldierSkins.blkt?Face=SoldierSkins.Othello
Case-insensitive search: genfluid -> ..\Textures\GenFluid.utx
appError called:
fread failed: BufferCount=-2616169 Error=1
Executing UObject::StaticShutdownAfterError
Executing USDLClient::ShutdownAfterError
Signal: SIGIOT [iot trap]
Aborting.
Exiting.
Name subsystem shut down
 
Old 11-25-2006, 08:32 AM   #9
DPSellyChan
LQ Newbie
 
Registered: Jan 2006
Location: Canada
Distribution: Fedora 7
Posts: 25

Rep: Reputation: 15
Uh, hello? I get an fread error when ROOT is running the program. Why is the buffer count started at -2,000,000 anyway?
 
Old 08-01-2008, 10:36 PM   #10
jogurnog
Member
 
Registered: Feb 2008
Distribution: Ubuntu 8.04, Slackware 12.1
Posts: 40

Rep: Reputation: 15
Grave Dig!!

hate to grave dig and all but mine won't save (I'm running ubuntu 8.04) also i got this one from a torrent, it was an ISO, there was a script with it too. I ran the script and UT installed, not sure which UT(GOTY/Regular)but it's v436 (if that gives any clues :|)

Last edited by jogurnog; 08-01-2008 at 11:05 PM.
 
  


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
unreal tournament can't run huno Linux - Games 5 02-07-2005 01:54 PM
getting unreal tournament 2004 to run in linux denizen Linux - Games 3 10-09-2004 06:31 PM
Can't get Unreal Tournament to run vivek_arya Linux - Games 1 01-26-2004 06:38 PM
Unreal Tournament 2003 run error pyropenguin Linux - Software 4 10-27-2003 02:06 PM
Unreal Tournament Just Wont Run Simon L Linux - Software 18 08-23-2003 08:56 AM

LinuxQuestions.org > Forums > Linux Forums > Linux - Software > Linux - Games

All times are GMT -5. The time now is 07:59 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