View Single Post
  #45 (permalink)  
Old October 26th, 2002
nDiScReEt's Avatar
nDiScReEt nDiScReEt is offline
_eLeCtRiFyInG MeMbRr_
 
Join Date: May 9th, 2002
Location: Chicago
Posts: 232
nDiScReEt is flying high
Default

Quote:
Originally posted by Unregistered
For those who are running Debian, this might help.

My system is running Debian unstable, with a freshly installed copy of J2SDK 1.4.1.

The install ran perfectly for me after I ran the following:
ln -s libstdc++-libc6.2-2.so.3 libstdc++-libc6.1-1.so.2


Regards,


Rex
Rex forgot to mention that you would have to create that link in the actual directory where libstdc++-libc6.2-2.so.3 is located. What Rex is doing is providing a link to the old libc6.1-1.so.2 as that is no longer seen libstdc++2.10-2.96-0.80mdk for my mandrake package which is actually symlinked to /usr/lib/libstdc++-3-libc6.2-2-2.10.0.so.

To find out where your libstdc++-3-libc6.2-2-2.10.0.so is located type this command:

whereis libstdc++-3-libc6.2-2-2.10.0.so

find that and then symlink it like this to keep symlinks to a minimum (ie to avoide a symlink to a symlink that is symlinked to an actual file) follow these instructions;

First, go to the directory where the whereis program located your file and then type:

ls -l libstdc++*

we type this command to check to see if the symlink:

libstdc++-libc6.2-2.so.2

isn't already present. If it isn't then create the symlink:

ln -s libstdc++-3-libc6.2-2-2.10.0.so libstdc++-libc6.2-2.so.2


Thank you Rex for posting the solution to the Suse 8.1 runtime issue with glibc-type error messages when trying to execute limewire after a successful install, as I couldn't since I had to remove Suse 8.1 to reconfigure my development box.

altoine

Last edited by nDiScReEt; October 27th, 2002 at 10:03 AM.
Reply With Quote