centos7上 IC工具的安裝

make-possible發表於2021-01-02

安裝完centos7系統之後,就開始安裝ICADV,從網上下載了壓縮包之後,進行解壓,然後打patch

打patch的時候,遇到幾個問題:

1、一些庫或者包的缺失:

1.1、報錯:

error while loading shared libraries: libstdc++.so.6:cannot open shared object file

1.2、報錯原因:

缺少libstdc++.so.6執行庫

1.3、解決方案:安裝libstdc++.so.6執行庫

執行命令

yum whatprovides libstdc++.so.6

然後會提示哪個安裝包有這個庫檔案,如下:

[root@SnsWeb ~]# yum whatprovides libstdc++.so.6

Loaded plugins: fastestmirror, refresh-packagekit, security

Loading mirror speeds from cached hostfile

libstdc++-4.4.7-11.el6.i686 : GNU Standard C++ Library

Repo    : base

Matched from:

Other    : libstdc++.so.6

然後執行

yum -y install libstdc++-4.4.7-11.el6.i686

參考連結:https://www.jb51.net/article/148563.html

 

2、打patch的方法

把patch解壓之後,執行解壓出來的指令碼:(指令碼 + ICADV的安裝路徑)

./1patch.sh /software/ICADV/ICADV123

然後到icad的/share/license目錄下執行configure,啟用licence

參考連結:http://bbs.eetop.cn/thread-863823-1-1.html

 

3、執行virtuso的時候,會報錯找不到hostname

在root帳號下,執行 hostname+任意名字,然後新開一個terminal即可啟動

 

相關文章