ubuntu下在usr/local/bin下软链接eclipse的可执行文件
<span style="font-size:18px;">ln -s /usr/local/eclipse/eclipse</span>
造成以下错误。
The Eclipse executable launcher was unable to locate its companion shared library.
解决方法:
1.删除链接的文件
<span style="font-size:18px;">rm /usr/local/bin/eclipse</span>
2.重建链接
<span style="font-size:18px;">ln -s /usr/local/eclipse/eclipse</span>