CentOS7 mounting cadenceIC617 (a)

This article is for learning the software installation, operation and demonstration at all centos7 64bit virtual machine system environment

1 [macrored@localhost patch]$ cat /etc/redhat-release
2 CentOS Linux release 7.7.1908 (Core)

While ensuring system and network environment and software updates (yum update).

1. Download

cadence official website has not provide free software installation package, the paper collected from the Internet to the software used in the provision of micro-cloud here download link: https://share.weiyun.com/5IUPNgv Password: vyt3ah

A total of four folders, three ordinary files, except eetop.cn_calibre_config.rar can not download, the other are in accordance with need. The total file size of 8.5GB, the installation space occupied bit about 12GB.

2. Extract software

After completion of the software installation package download centos copy to the system described herein into the home directory of all files, information files listed below for reference:

 1 [macrored@localhost cadence-linux]$ pwd
 2 /home/macrored/cadence-linux
 3 [macrored@localhost cadence-linux]$ ls
 4 bashrc            Calibre2015                  IScape04.23-s010lnx86.t.Z  patch
 5 cadence_IC.06.17  eetop.cn_calibre_config.rar  MMSIM15.10.284
 6 [macrored@localhost cadence-linux]$ du -h --max-depth=1
 7 4.3G    ./cadence_IC.06.17
 8 2.1G    ./Calibre2015
 9 2.2G    ./MMSIM15.10.284
10 1.2M    ./patch
11 8.6G    .
12 [root@localhost cadence-linux]# tree -L 2
13 .
14 ├── bashrc
15 ├── cadence_IC.06.17
16 │   ├── cadence_license
17 │   ├── IC06.17.700_Base.7z.001
18 │   ├── IC06.17.700_Base.7z.002
19 │   ├── IC06.17.700_Base.7z.003
20 │   ├── IC06.17.700_Base.7z.004
21 │   └── IC06.17.700_Base.7z.005
22 ├── Calibre2015
23 │   ├── aoi_cal_2015.2_36.27_mib.exe.7z.001
24 │   ├── aoi_cal_2015.2_36.27_mib.exe.7z.002
25 │   ├── aoi_cal_2015.2_36.27_mib.exe.7z.003
26 │   ├── calibre_license
27 │   └── calibre_patch
28 ├── eetop.cn_calibre_config.rar
29 ├── IScape04.23-s010lnx86.t.Z
30 ├── MMSIM15.10.284
31 │   ├── MMSIM15.10.284_Hotfix.7z.001
32 │   ├── MMSIM15.10.284_Hotfix.7z.002
33 │   └── MMSIM15.10.284_Hotfix.7z.003
34 └── patch
35     ├── cadence.pat
36     ├── cadence_patch.sh
37     ├── README.md
38     └── sfk
39 
40 7 directories, 18 files
41 [root@localhost cadence-linux]#

Next, install the required decompression, the compression codec used for 7za, but without p7zip centos default compression codec; There are two solutions, with the windows decompression tool then copied or decompressed at centos p7zip installed compression codec, where to install p7zip example:

1 [macrored@localhost cadence-linux]$ wget https://nchc.dl.sourceforge.net/project/p7zip/p7zip/16.02/p7zip_16.02_src_all.tar.bz2
2 [macrored@localhost cadence-linux]$ tar -jxf p7zip_16.02_src_all.tar.bz2
3 [macrored@localhost cadence-linux]$ cd p7zip_16.02/
4 [macrored@localhost p7zip_16.02]$ make
5 [macrored@localhost p7zip_16.02]$ sudo make install
6 [macrored@localhost p7zip_16.02]$ 7za
7 [macrored@localhost p7zip_16.02]$ cd ..
8 [macrored@localhost cadence-linux]$

After installing a compression codec, you can unpack the pleasant:

1 [macrored@localhost cadence-linux]$ tar -xZf IScape04.23-s010lnx86.t.Z
2 [macrored@localhost cadence-linux]$ cd cadence_IC.06.17/
3 [macrored@localhost cadence_IC.06.17]$ 7za x IC06.17.700_Base.7z.001
4 [macrored@localhost cadence_IC.06.17]$ cd ../MMSIM15.10.284/
5 [macrored@localhost MMSIM15.10.284]$ 7za x MMSIM15.10.284_Hotfix.7z.001
6 [macrored@localhost MMSIM15.10.284]$ cd ../Calibre2015/
7 [macrored@localhost Calibre2015]$ 7za x aoi_cal_2015.2_36.27_mib.exe.7z.001

Well, adhere to success is not far away now; after extraction is completed, you can delete the archive and p7zip source packages used to save space, of course, can not be deleted, the file information provided herein is for reference:

 1 [macrored@localhost Calibre2015]$ cd .. && tree -L 2
 2 .
 3 ├── bashrc
 4 ├── cadence_IC.06.17
 5 │   ├── cadence_license
 6 │   └── IC06.17.700_Base
 7 ├── Calibre2015
 8 │   ├── aoi_cal_2015.2_36.27_mib.exe
 9 │   ├── calibre_license
10 │   └── calibre_patch
11 ├── data
12 │   ├── defaults
13 │   ├── defaults.old
14 │   ├── desc
15 │   ├── exe
16 │   ├── inv
17 │   ├── IScape04.23-s010lnx86.ngt
18 │   └── submittor
19 ├── eetop.cn_calibre_config.rar
20 ├── iscape -> iscape.04.23-s010
21 ├── iscape.04.23-s010
22 │   ├── bin
23 │   ├── docs
24 │   ├── lib
25 │   ├── MANIFEST.lnx86
26 │   ├── README
27 │   ├── runtime
28 │   └── VERSION.lnx86
29 ├── IScape04.23-s010lnx86.t.Z
30 ├── MMSIM15.10.284
31 │   └── MMSIM15.10.284_Hotfix
32 └── patch
33     ├── cadence.pat
34     ├── cadence_patch.sh
35     ├── README.md
36     └── sfk
37 
38 16 directories, 18 files
39 [macrored@localhost cadence-linux]$

 3. Prepare the installation environment

There are software linux systems interdependent relationship, like the cadence of this large-scale software systems rely on a little more complex environment, the novice has passed during installation error message to be retrofitted environment (also known as software / libraries), This article provides as well as installed cadence relies environment list (software library).

VMware Tools depend on the environment:

1 [macrored@localhost cadence-linux]$ sudo yum install open-vm-tools open-vm-tools-desktop kernel kernel-headers kernel-devel gcc make -y

cadence depends environment:

1 [macrored@localhost cadence-linux]$ sudo yum install java libjvm.so redhat-lsb glibc.x86_64 glibc.i686 ksh libXext libXext.i686 libXtst libXtst.i686 libXt libXt.i686 libGLU libGLU.i686 mesa-libGLU libXrender libXrender.i686 libXp libXp.i686 libXrandr libXrandr.i686 *xorg* openmotif libstdc++.x86_64 libstdc++.i686 xterm -y
2 [macrored@localhost cadence-linux]$ find /lib/ -name libjvm.so | grep i386
3 /lib/jvm/java-1.8.0-openjdk-1.8.0.232.b09-0.el7_7.i386/jre/lib/i386/server/libjvm.so
4 [macrored@localhost cadence-linux]$ sudo ln -s /lib/jvm/java-1.8.0-openjdk-1.8.0.232.b09-0.el7_7.i386/jre/lib/i386/server/libjvm.so /lib/

MMSIM depend on the environment:

1 [macrored@localhost cadence-linux]$ sudo yum install gcc gcc-c++ csh *xorg-x11-fonts* compat-libstdc++-33.i686 alliance-libs alliance glibc-devel.i686 -y

After installing the environment, you can officially install the software.

Continued Wen CentOS7 installation cadenceIC617 (b)

Reference article:

[1] https://zhuanlan.zhihu.com/p/37507603 

[2] https://blog.csdn.net/szsfate/article/details/78076887

Guess you like

Origin www.cnblogs.com/macrored/p/11870183.html
Recommended