LinuxQuestions.org
Help answer threads with 0 replies.
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 05-30-2005, 08:36 PM   #1
raven.sorrow
Member
 
Registered: Oct 2004
Distribution: Gentoo/FBSD/Slack
Posts: 65

Rep: Reputation: 15
Unreal Turn. 2004 won't start


I have a Slack10.1 install on a P4 1.8GHz box (this is my full time workstation) and as far as I can tell I have the /etc/X11/xorg.conf configured correctly. But when I go to start UT2004 this is what I see:

Code:
xaero@biggeek:~$ ut2004 
WARNING: ALC_EXT_capture is subject to change!
Xlib:  extension "XiG-SUNDRY-NONSTANDARD" missing on display "0:0.0".
FGLTexMgr: open of shared memory object failed (Function not implemented)
__FGLTexMgrCreateObject: __FGLTexMgrSHMmalloc failed!!!
fglX11AllocateManagedSurface: __FGLTexMgrCreateObject failed!!
FGLTexMgr: open of shared memory object failed (Function not implemented)
__FGLTexMgrCreateObject: __FGLTexMgrSHMmalloc failed!!!
fglX11AllocateManagedSurface: __FGLTexMgrCreateObject failed!!
FGLTexMgr: open of shared memory object failed (Function not implemented)
__FGLTexMgrCreateObject: __FGLTexMgrSHMmalloc failed!!!
fglX11AllocateManagedSurface: __FGLTexMgrCreateObject failed!!
FGLTexMgr: open of shared memory object failed (Function not implemented)
__FGLTexMgrCreateObject: __FGLTexMgrSHMmalloc failed!!!
fglX11AllocateManagedSurface: __FGLTexMgrCreateObject failed!!
FGLTexMgr: open of shared memory object failed (Function not implemented)
__FGLTexMgrCreateObject: __FGLTexMgrSHMmalloc failed!!!
fglX11AllocateManagedSurface: __FGLTexMgrCreateObject failed!!
FGLTexMgr: open of shared memory object failed (Function not implemented)
__FGLTexMgrCreateObject: __FGLTexMgrSHMmalloc failed!!!
fglX11AllocateManagedSurface: __FGLTexMgrCreateObject failed!!
FGLTexMgr: open of shared memory object failed (Function not implemented)
__FGLTexMgrCreateObject: __FGLTexMgrSHMmalloc failed!!!
fglX11AllocateManagedSurface: __FGLTexMgrCreateObject failed!!
Signal: SIGSEGV [segmentation fault]
Aborting.


Crash information will be saved to your logfile.
xaero@biggeek:~$

Can someone help in figureing this out?
 
Old 05-30-2005, 08:49 PM   #2
bigtpumped
Member
 
Registered: May 2005
Distribution: gentoo
Posts: 39

Rep: Reputation: 15
It appears that you are having an issue with your video drivers. Running an NVidia video card, i had to recompile my vid drivers manually. You can actually download them for linux from NVidia's website. After recompiling them (actualy i had a friend recompile them for me) my UT worked fine. Also, other 3d games were choppy b4 they were recompiled. Afterwards, they worked great. I don't know anything about how to recompile your drivers, only that doing so would probably fix the problem.
 
Old 05-30-2005, 09:19 PM   #3
raven.sorrow
Member
 
Registered: Oct 2004
Distribution: Gentoo/FBSD/Slack
Posts: 65

Original Poster
Rep: Reputation: 15
I'm not using an nVidia Video Card, I have an ATI Raidon 8500
 
Old 05-31-2005, 07:49 AM   #4
bigtpumped
Member
 
Registered: May 2005
Distribution: gentoo
Posts: 39

Rep: Reputation: 15
I can't help you much more, but I think the drivers that you need are located at http://www.nvidia.com/object/linux.html . I am almost positive that you have a vid driver issue.
 
Old 05-31-2005, 07:56 AM   #5
cs-cam
Senior Member
 
Registered: May 2004
Location: Australia
Distribution: Gentoo
Posts: 3,545

Rep: Reputation: 57
If he's using an ati card then nvidia drivers won't solve anything, if possible, even make them worse

Do you have 3d acceleration? What output do you get from running this command?
Code:
glxinfo | grep "direct rendering"
Google didn't seem to be much help but all those mentions of fgl seem to indicate it's a problem with the ati drivers.
 
Old 06-02-2005, 05:33 PM   #6
raven.sorrow
Member
 
Registered: Oct 2004
Distribution: Gentoo/FBSD/Slack
Posts: 65

Original Poster
Rep: Reputation: 15
sorry for the delay, e-mail got b0rked for a few days


Code:
glxinfo | grep "direct rendering"xaero@biggeek:~$ glxinfo | grep "direct rendering"
direct rendering: Yes
xaero@biggeek:~$
 
Old 06-03-2005, 06:22 PM   #7
beezlebozo
LQ Newbie
 
Registered: May 2005
Posts: 15

Rep: Reputation: 0
I had a similar error, and this worked for me. From .ATI's support site.

Quote:

The display driver requires POSIX shared memory to be enabled on the system in order to run these applications correctly. This feature should be enabled by default on most current Linux distributions, but may be disabled intentionally by some system administrators or not included in older distributions.

To enable POSIX shared memory on your system, perform the following as root:

1. Add to following line to /etc/fstab (if it isn't there already):

tmpfs /dev/shm tmpfs defaults 0 0

2. Mount POSIX shared memory as follows:

mount /dev/shm

3. Issue the following command to check that it mounted properly:

mount | grep "shm"

4. If the mount was successful, then the following output (or similar) should appear:

tmpfs on /dev/shm type tmpfs (rw)

At this point, POSIX shared memory is enabled. Your 3D applications should run properly and the error message above should no longer occur.

If the output from this commnd is blank, then the mount failed.

If /dev/shm fails to mount, then this feature may not be turned on in your Linux kernel. In this case we recommend upgrading to a more recent Linux kernel, or contacting your Linux Distribution vendor for more information on enabling this feature.
Please note I'm no expert. That's just what I did and it worked. (Also note I'd link you right to the ati page, but it's frames. You can search "FGLTexMgr: open of shared memory object failed" on their search box and get the right page.)
 
Old 06-03-2005, 06:38 PM   #8
raven.sorrow
Member
 
Registered: Oct 2004
Distribution: Gentoo/FBSD/Slack
Posts: 65

Original Poster
Rep: Reputation: 15
Kind Sir,
No need to link me, your instructions works. I set up /dev/shm to be mounted at boottime, I mounted it manually and UT2K4 started w/o any issues.
 
  


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 2004 BarfBag Linux - Games 1 10-01-2005 01:56 PM
Unreal Tournament 2004 noobtesting Linux - Software 12 12-07-2004 05:15 PM
Unreal Tournament 2004 fltcaptriker Linux - Games 4 12-05-2004 12:37 AM
Unreal Tournament 2004 BlandoCal Linux - Software 7 05-31-2004 02:41 PM
unreal 2004 is there a port yet? citrus Linux - Games 8 03-21-2004 01:47 PM

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

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