|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有账号?注册
×
安装中几个问题:
查看主机名: uname -n 或hostname
安装JDK:
apt-get install default-jdk
lmli时遇到如下错误,
(lmgrd) Can't make directory /usr/tmp/.flexlm, errno: 2(No such file or directory)
(lmgrd) Can't make directory /usr/tmp/.flexlm, errno: 2(No such file or directory)
(lmgrd) Can't open /usr/tmp/.flexlm/lmgrdl.31958, errno: 2
于是到/usr下面果然没有找到tmp,自己建一个吧
建立目录tmp
mkdir /usr/tmp
赋予其读写权限(和上面设置类似)
sudo chmod 755 /usr/tmp
注销一下,lmli,可以了。
启动icfb &,有三个错误:
/eda/ic610/tools/dfII/bin/icfb: 97: cds_plat: not found
/eda/ic610/OA/bin/sysname: 328: /bin/awk: not found
/eda/ic610/tools/dfII/bin/32bit/icfb.exe: error while loading shared libraries: libelf.so.1: cannot open shared object file: No such file or directory
第一个错误:
因为cds_plat为shell脚本文件,所以必须安装csh
sudo apt-get install csh
解决。
第二个错误:
找到awk文件
locate awk
然后ln -s连接,或者移动awk到/bin/awk
解决
第三个错误:
缺少库文件,安装一个
新里利软件包里搜索libelf,安装libelf1即可。(前提是更新了系统的更新源)
再次运行icfb &
可以启动了。
第四个错误:
Qt Warning: X Error: BadWindow (invalid Window parameter) 3
网友raychore
这个问题我猜测是由于virtuoso版本过旧的缘故,在ic614中不存在这个问题。网上很多解决方法都是修改xorg.conf的composite项。最好的解决方法 在icfb(或报错的类似命令)前加入XLIB_SKIP_ARGB_VISUALS=1
。或者修改icfb文件 进入icfb所在的文件夹 gedit icfb 在里面加入这句 export XLIB_SKIP_ARGB_VISUALS=1 |
|