Author Topic: Freespace 2 on Linux  (Read 5185 times)

0 Members and 1 Guest are viewing this topic.

Offline Mars

  • I have no originality
  • 211
  • Attempting unreasonable levels of reasonable
Quote from: flgrxinfo
Detected configuration:
Architecture: i686 (32-bit)
X Server: Xorg 7.0.0
Removing temporary directory: fglrx-install
jsampson@mars:~/Desktop$ fglrxinfo
Xlib:  extension "XFree86-DRI" missing on display ":0.0".
display: :0.0  screen: 0
OpenGL vendor string: Mesa project: www.mesa3d.org
OpenGL renderer string: Mesa GLX Indirect
OpenGL version string: 1.2 (1.5 Mesa 6.4.1)

I've seached for XFree86-DRI, it is the Direct Rendering Infastructure, I think I just figured out my problem.
« Last Edit: August 03, 2006, 01:58:46 pm by Mars »

 

Offline Kamikaze

  • A Complacent Wind
  • 29
    • http://www.nodewar.com
Most likely just need to reconfigure xorg.conf.
Science alone of all the subjects contains within itself the lesson of the danger of belief in the infallibility of the greatest teachers in the preceding generation . . .Learn from science that you must doubt the experts. As a matter of fact, I can also define science another way: Science is the belief in the ignorance of experts. - Richard Feynman

 

Offline Fury

  • The Curmudgeon
  • 213
Quote from: flgrxinfo
Detected configuration:
Architecture: i686 (32-bit)
X Server: Xorg 7.0.0
Removing temporary directory: fglrx-install
jsampson@mars:~/Desktop$ fglrxinfo
Xlib:  extension "XFree86-DRI" missing on display ":0.0".
display: :0.0  screen: 0
OpenGL vendor string: Mesa project: www.mesa3d.org
OpenGL renderer string: Mesa GLX Indirect
OpenGL version string: 1.2 (1.5 Mesa 6.4.1)

OK, try this.
Code: [Select]
sudo nano /etc/X11/xorg.conf
add
Code: [Select]
load "dri"in section "Module" if it is not already there. Reboot. (sudo reboot)


Does not work? Try this then.
If you installed ATI drivers from ati.com, use the uninstaller that came with these drivers to uninstall them. (see driver readme for details)
Code: [Select]
sudo apt-get update
sudo apt-get remove --purge xorg-driver-fglrx
sudo apt-get remove --purge linux-restricted-modules-$(uname -r)

When you first installed fglrx, it made a backup called xorg.conf.original, xorg.conf.original-0 or something like that.
Code: [Select]
sudo cp /etc/X11/xorg.conf.original /etc/X11/xorg.conf

Code: [Select]
sudo apt-get install linux-restricted-modules-$(uname -r)
sudo apt-get install xorg-driver-fglrx
sudo depmod -a
sudo aticonfig --initial
sudo aticonfig --overlay-type=Xv
sudo nano /etc/X11/xorg.conf
add
Code: [Select]
load "dri"in section "Module" if it is not already there. Reboot. (sudo reboot)

When it works, fglrxinfo should output similar text to this.
Code: [Select]
$ fglrxinfo
display: :0.0  screen: 0
OpenGL vendor string: ATI Technologies Inc.
OpenGL renderer string: RADEON 9700 Generic
OpenGL version string: 2.0.5755 (8.24.8)

Still does not work?
Code: [Select]
strace fglrxinfo 2>&1 | less
sudo dmesg | grep fgrlx
Should output errors which should be enough to give you a hint what's the problem and then do a search at http://ubuntuforums.org.
« Last Edit: August 04, 2006, 12:38:31 am by Fury »

 

Offline Mars

  • I have no originality
  • 211
  • Attempting unreasonable levels of reasonable
Fury, you have my eternal gratitude. Thank you so much!

  

Offline Fury

  • The Curmudgeon
  • 213
So, what worked? :)

 

Offline Mars

  • I have no originality
  • 211
  • Attempting unreasonable levels of reasonable
Quote
Code: [Select]
sudo apt-get install linux-restricted-modules-$(uname -r)
sudo apt-get install xorg-driver-fglrx
sudo depmod -a
sudo aticonfig --initial
sudo aticonfig --overlay-type=Xv
sudo nano /etc/X11/xorg.conf[/quote]