Advertisement
Guest User

Untitled

a guest
Feb 1st, 2013
392
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.08 KB | None | 0 0
  1. README for running Trine 2 on the OpenSUSE Linux distribution.
  2.  
  3. - Trine 2 most likely requires specific library packages to be installed on
  4. the OpenSUSE linux distribution.
  5.  
  6. - The following instructions assume that you would be using the OpenSUSE 12.1,
  7. the 64 bit version.
  8.  
  9. - Similar instructions should apply to any other quite recent OpenSUSE
  10. distributions as well, but you may have to change some of the library names
  11. to match your distribution.
  12.  
  13.  
  14. 1. Installing the required libraries
  15. ------------------------------------
  16.  
  17. To install the required libraries for the OpenSUSE 12.1 distribution,
  18. you should run the following commands (assuming you do not
  19. have the packages already installed, and assuming you have sudo privileges).
  20.  
  21. sudo /sbin/yast --install zlib-32bit
  22. sudo /sbin/yast --install libfreetype6-32bit
  23. sudo /sbin/yast --install gtk2-tools-32bit
  24. sudo /sbin/yast --install libpng12-0-32bit
  25. sudo /sbin/yast --install libvorbis0-32bit
  26. sudo /sbin/yast --install libvorbisfile3-32bit
  27. sudo /sbin/yast --install libopenal1-soft-32bit
  28.  
  29. Also, notice, that you might already have some conflicting / newer package
  30. installed so you should consider keeping your existing libraries instead,
  31. should some of the packages conflict with an existing one.
  32.  
  33.  
  34. 2. Figuring out why the game isn't starting
  35. -------------------------------------------
  36.  
  37. If you still get some issues trying to start the game (for example, nothing
  38. seems to happen when you click Launch from the Trine 2 launcher), follow
  39. these instructions...
  40.  
  41. To see which libraries are missing, or if there is some additional information
  42. available, you can run the following commands in the trine 2 install directory.
  43.  
  44. Starting the game manually from a terminal (may provide some additional info):
  45.  
  46. export LD_LIBRARY_PATH=./lib/lib32
  47. bin/trine2_linux_32bit
  48.  
  49. Or by listing at the required library files manually:
  50.  
  51. export LD_LIBRARY_PATH=./lib/lib32
  52. ldd bin/trine2_linux_32bit
  53. ldd bin/trine2_linux_launcher_32bit
  54.  
  55. These commands will list you the libraries that the game binaries depend on.
  56. Look for any library lines that say: not found
  57.  
  58. If any libraries are listed as not found, you may have to figure out which
  59. additional packages are missing. If its libGL or libGLU, see further below.
  60.  
  61.  
  62. 3. Having appropriate display drivers
  63. -------------------------------------
  64.  
  65. Regarding any missing libGL or libGLU libraries, you'll probably
  66. need to install the proprietary ATI or NVIDIA graphics drivers for your
  67. graphics card.
  68.  
  69. Any other display drivers / opengl implementation might work, if they
  70. have adequate shader support, etc. but they are not officially supported.
  71.  
  72. If your system lists mesa as the libGL provider (see the ldd output as
  73. instructed above), you probably have the software Mesa GL installed.
  74. It is likely that the game starts with those libraries, but it will not work
  75. correctly and will not be playable.
  76.  
  77.  
  78. 4. Still not working?
  79. ---------------------
  80.  
  81. If you still cannot get the game working after doing the steps above, please,
  82. go see the game support website / forums for possible solutions.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement