ID:189723
 
I run DreamDaemon and this error comes up:

/usr/libexec/ld-eld/so/1: Shared object "libstdc++.so.3" not found

Anybody know why?

~Blaz3
yup! this means that you PATH variable does not have enough info to find those libraries (BYOND calls these libraries for various functionality), *or* that particular library does not exist. I'm betting on the former because I had that trouble too when first setting up the walrus.digitalbyond tester server under RedHat 8.

Do a search for that particular library to see if it exists already (usually commands like 'locate blah' or 'find blah' will work). If it does exist, then look up Linux tutorials on setting the PATH variable to tack on the path of where that library lives to the end of the existing PATH values (like /var/lib/ for example).

Remember: the MAN pages are your friends! =)
In response to digitalmouse
Ok thanks!
[edit]
http://www.freebsd.org/cgi/man.cgi
=)
[/edit]

~Blaz3
In response to Blaz3
don't forget that FreeBSD is a bit different that Linux in some areas (unless that is what you are using of course!) =)

Actually I was talking about the man pages stored on your system - most modern distros come with a full set on man pages built in - you can usually access them like so: man (command)
In response to digitalmouse
Yea, I use both since I have my server computer RIGHT next to my computer. But when I don't feel like going to a website, I'll use the man command. I'm kinda used to Linux and Unix. Im getting better at it.

~Blaz3