Reputation: 1164
I have downloaded the .sfx
file for IE8 from modern.ie and followed the instructions on the site, to give the file executable permission. But when running it I get an error about a missing shared library.
./IE8.WinXP.For.LinuxVirtualBox.sfx: error while loading shared libraries: libstdc++.so.6: cannot open shared object file: No such file or directory
I'm running desktop Ubuntu 13.04, 64-bit, and Virtual Box 4.2.10
Does anyone know which package I should install? I've already run sudo apt-get install libstdc++6
(as suggested elsewhere on StackOverflow) but that has not helped.
Upvotes: 3
Views: 460
Reputation: 12555
Just had the same problem. I got this working, you need two libraries
sudo apt-get install libc6-i386
sudo apt-get install lib32stdc++6
Upvotes: 7