Advertisement
Guest User

Team Fortress 2 problem solution @ Steam for Linux

a guest
Apr 10th, 2013
1,487
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.38 KB | None | 0 0
  1. --Team Fortress 2 problem's solution @ Steam for Linux with older hardware--
  2.  
  3. *********
  4. *******************
  5.  
  6. If you get the following error:
  7.  
  8. "Could not find required OpenGL entry point 'glColorMaskIndexedEXT'! Either your video card is unsupported, or your OpenGL driver needs to be updated."
  9.  
  10. Try:
  11.  
  12. If you're running a 64bit distro you'll need the package libc6-dev-i386 installed. If you're using Mint, Ubuntu or one of its derivatives that's as simple as pasting the following into the terminal:
  13.  
  14. sudo apt-get install libc6-dev-i386
  15.  
  16. Now paste the following into the terminal. It will download 2 files onto your computer and then compile one of them.
  17.  
  18. wget http://dl.dropbox.com/s/5h8n4ivfbgq98bl/strstr.c && gcc -fPIC -DPIC -O2 -m32 -c strstr.c && ld -m elf_i386 -shared -o strstr.so strstr.o && mkdir ~/bin && cd bin/ && wget http://dl.dropbox.com/s/t7rlsvp26h50vro/hl2debug && chmod +x ~/bin/hl2debug
  19.  
  20. Now paste the following into the terminal. It will open your .profile in a simple text editor. If you're using something other than Ubuntu, replace 'gedit' with the name of your text editor. For example on Xubuntu this would be 'leafpad'.
  21.  
  22. cd $home && gedit .profile
  23.  
  24. Paste these 2 lines at the bottom of the file. Save it, then close the editor.
  25.  
  26. export PATH=$HOME/bin:$PATH
  27. export GAME_DEBUGGER="hl2debug"
  28.  
  29. Restart Ubuntu or logout and log back in
  30.  
  31. Start Steam and play.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement