ubuntu 18.04 vcs2016 安装记录

ubuntu 18.04  vcs2016  scl 2017

记录以下遇到的问题

下载的资源中,没有 scl2017 的相关文件,需要从其他地方下载 scl 2017 ,把对应文件和 vcs 的安装文件放在统一目录下,再执行脚本。

如下两个文件

scl_v2017.12_common.spf

scl_v2017.12_linux64.spf

/bin/csh: bad interpreter:No such file or directory

解决办法:

sudo apt-get install csh

0、运行lmgrd 提示no such file and directory

需要依赖包 lsb-core and lsb-base

解决办法:

apt-get install lsb-core

https://blog.51cto.com/carywu/421394

0、运行- lmgrd -c licen.dat,Can't make directory /usr/tmp/.flexlm, errno: 2(No such file or directory)

类似解释该错误不影响运行,仅log文件受影响,http://china.xilinx.com/support/answers/62248.html

原因 /usr/tmp  被 /var/tmp 替换

解决办法:

可在命令中直接加入指定log文件,可避免错误

lmgrd -c licen.dat -l ~/license_log.log

1、运行vcs出错,信息/bin/sh: Illegal option -h

修改ubuntu 上的/bin/sh
在ubuntu上,/bin/sh默认是链接到/bin/dash的,当你从源代码编译软件的时候,dash可能会导致一些错误,至少我遇到过 类似问题,因此,我把/bin/sh的连接改为了/bin/bash

解决办法:
sudo rm -f /bin/sh
sudo ln -s /bin/bash /bin/sh

http://blog.eetop.cn/blog-955266-55853.html

2、运行dve提示error while loading shared libraries: libSM.so.6: cannot open shared object file: No such file or directory

解决办法:

sudo apt-get install libsm-dev:i386

https://blog.csdn.net/weixin_31317775/article/details/78717941

猜你喜欢

转载自www.cnblogs.com/fundou/p/10872992.html