Nobody gave me a free account for this game but usually you just need to delete libs which are installed in your system already. This is very easy on a 32 bit system as you can just do in the dir with the libs:
when you run pure 64 bit code it might work there as well, but it does not work for 32 bit apps on a 64 bit system as it does not check if it is from the lib32 dir or not.
Code:
for x in *; do dpkg -S $x && rm -vf $x; done
Comment