Jump to content

lvmnwizdqx

Resident
  • Posts

    1
  • Joined

  • Last visited

Everything posted by lvmnwizdqx

  1. @Ob1knob Solo, Jessikiti Nikitin While both your solutions work around the issue, the actual cause of the problem is something else. Have a look at the following code block from within the secondlife invocation script. ## - Works around a problem with misconfigured 64-bit systems not finding GLI386_MULTIARCH="$(dpkg-architecture -ai386 -qDEB_HOST_MULTIARCH 2>/dev/null)"MULTIARCH_ERR=$?if [ $MULTIARCH_ERR -eq 0 ]; then echo 'Multi-arch support detected.' MULTIARCH_GL_DRIVERS="/usr/lib/${I386_MULTIARCH}/dri" export LIBGL_DRIVERS_PATH="${LIBGL_DRIVERS_PATH}{MULTIARCH_GL_DRIVERS}:/usr/lib64/dri:/usr/lib32/dri:/usr/lib/dri"else export LIBGL_DRIVERS_PATH="${LIBGL_DRIVERS_PATH}:/usr/lib64/dri:/usr/lib32/dri:/usr/lib/dri"fi I386_MULTIARCH is actually populated utilizing "dpkg-architecture", which is part of "dpkg-dev" debian package. "dpkg-dev" isn't installed by default; tested with Ubuntu 14.04.3 32-bit. Due to the "2>/dev/null", the secondlife invocation script is very much silent. The solution, without messing with the actual system, is to install "dpkg-dev". sudo apt-get install dpkg-dev
×
×
  • Create New...