> Does anyone know anything about libc.so.4? I have tried to play doom, but
> when I enter "doom" I get "can't find libc.so.4" I have searched my
> directories, and I am unable to find these libraries. I also tried looking
> online, and found libraries, except no libc libraries. Does anyone have a
> fix for this problem?
> Rob
Hi
This may help you a bit.
Most libraries are named something like: libwhatchamacallit.so.4.xx
where xx is a number.
In order to to find it under the name: libwhatchamacallit.so.4
you have to create a softlink.
First find the library with the command:
find / -name libwhatchamacallit.*
then change to the directory and do the following:
ln -s libwhatchamacallit.so.4.xx libwhatchamacallit.so.4
That will make the library visible under another name without making a
copy of it
Regards
John GLuck