I am trying to play a 32 bit game on a Ubuntu 20.04 64 bit system, I added the installs in the best answer here, but I still get the above error. If I try
apt-file search libopenal.so.1
I get
libopenal1: /usr/lib/x86_64-linux-gnu/libopenal.so.1
libopenal1: /usr/lib/x86_64-linux-gnu/libopenal.so.1.19.1
And if I try
sudo apt-get install libopenal1:i386
I get
libopenal1:i386 is already the newest version (1:1.19.1-1)
dpkg -l | grep libopenal1
should show you and when the line starts withii
means that it is installed into the system. You may need to only worry about the other applications on that installation line. – Terrance Jul 03 '21 at 04:33ii libopenal1:i386 1:1.19.1-1 i386 Software implementation of the OpenAL audio API (shared library)
– Jul 03 '21 at 04:41sudo apt install <package name>
from a terminal window – Terrance Jul 03 '21 at 17:45