19 December 2015

When you get error "err:module:import_dll Loading library OpenAL32.dll" from wine, that means you don't have openal package installed in linux. Another variation of this error is: failed to load .so lib "/usr/lib32/wine/openal32.dll.so". Install it with your favourite package manager, 32 bit version for 32 bit wine is used in this example. The package name and manager can vary by your distribution.

Source code viewer
  1. # The package name and manager can vary by your distribution.
  2. yay -S lib32-openal
Programming Language: Bash