mysql cant install

when i install , libcrypt.so.2 not found
so i do
ln -s libcrypt.so libcrypt.so.2
after this
some files not found
i do that again and again
now it said :
/libexec/ld-elf.so.1:/usr/libpthread.so.2:version LIBTHREAD_1_0 required by ./bin/my_print_defaults not found
how solve this problem
my apology for my poor english
 
minniegg2009 said:
when i install , libcrypt.so.2 not found
so i do
ln -s libcrypt.so libcrypt.so.2
after this
some files not found
i do that again and again
Don't!

How did you install mysql? And on what version of Freebsd?
 
Why didn't you read the handbook before you started messing up your system? FreeBSD has a software collection called Ports, and if you don't want to compile your own software, use Packages.

All you need to do is:

Code:
cd /usr/ports/databases/mysql50-server
make install clean

If you don't have the ports tree or need to update it, look here.
 
Back
Top