01.03.2010, 18:03
Quote:
Originally Posted by dengli
Quote:
lrwxrwxrwx 1 root root 18 01-22 18:11 /usr/lib/libstdc++.so.6 -> libstdc++.so.6 than i reuse the plugins,but it still show the same thing:Failed (/usr/lib/libstdc++.so.6: version `GLIBCXX_3.4.9' not found (required by plugins/mysql.so).. |
http://www.dumpt.com/img/viewer.php?...wp3fop7nb0.jpg
you only have
/usr/lib/libstdc++.so.6.0.8
so, your symlink is bad linked (linked yo itself)
do those commands
Код:
mv /usr/lib/libstdc++.so.6 /usr/lib/libstdc++.so.6.bak ln -s /usr/lib/libstdc++.so.6.0.8 /usr/lib/libstdc++.so.6
what is done here:
With the first command, you backup your curent symlink by renaming it to libstdc++.so.6.bak
and with the second one, you link it to /usr/lib/libstdc++.so.6.0.8