13

How can I install OpenGL (with GLUT) and OpenAL (with ALUT) in Ubuntu Lucid lynx? I tried installing Mesa 7.8.2 using configure and make (the method told in www.mesa3d.org), but it is not installing anything. X.org's X is installed in my system, but there is no /usr/X11R6 directory. Is that a problem?

jww
  • 97,681
  • 90
  • 411
  • 885
Kit
  • 157
  • 1
  • 1
  • 3

1 Answers1

33
    sudo apt-get update
    OpenGL: sudo apt-get install libglu1-mesa-dev freeglut3-dev mesa-common-dev
    OpenAL: sudo apt-get install libopenal0a libopenal-dev
    ALUT:   sudo apt-get install libalut0 libalut-dev

[ALUT may have broken packages but it works fine]

Amir Zadeh
  • 3,481
  • 2
  • 26
  • 47