VCS安装启动问题
时间:10-02
整理:3721RD
点击:
前两天安装了VCS,一直启动不了,输入运行命令总是显示出错“bin/sh: 0: Illegal option -h”
原来,错误是显示命令在bash 上不可运行,需要更改sh,取消默认bash设置
因此,解决方法为
#dpkg-reconfigure dash
选择<NO> 即可!
原文链接:https://platformadmin.com/blogs/paul/2012/10/running-sas-on-ubuntu-linux-dash-to-bash/
谢谢,感谢
VCS 启动问题追加
编译遇到错误/usr/bin/ld: cannot find -lstdc++的解决
/usr/lib/gcc/i486-linux-gnu/4.3.4/libstdc++.a when searching for -lstdc++
/usr/bin/ld: cannot find -lstdc++
collect2: ld returned 1 exit status
make: *** [out/host/linux-x86/obj/lib/libneo_util.so] 错误 1
缺少g++-multilib库,安装即可: apt-get install g++-multilib
