Cliosoft SOS安装

Cliosoft SOS安装

一、环境准备

系统 IP 版本
Centos7.9 192.168.3.100 sos_7.05.p9_linux64

二、安装

  1. 创建安装目录
mkdir /edatools/clio
  1. 解压安装文件
tar -xf sos_7.05.p9_linux64.tar
  1. 移动到新的目录
cd sos_7.05.p9_linux64
  1. 运行安装脚本
./cliosoft.install

注意:通常在安装脚本的每一步,你可以按Enter或Return键接受默认选项。接下来的几步将解释这些选项。

  1. 选择安装目录
** Select the root directory for the ClioSoft installation.
   Note: The installation of different releases/platforms will
         be done in sub-directories of this root directory.

   Example: <ROOT_INSTALL_DIR>/sos_6.30_linux

** Current directory  : /edatools/source/sos/sos_7.05.p9_linux64
----------------------------------------------------------------------
Root installation dir (<enter> = /edatools/source/sos): /edatools/clio # 输入安装目录再按回车
  1. 输入1安装ClioSoft SOS硬件配置管理软件,或者输入2仅安装Visual Design Diff工具
** Please select type of installation:
   1 - Full installation (default)
   2 - Visual Design Diff (VDD) installation only
----------------------------------------------------------------------
Select intallation type [1|2] (<enter> = 1)? 1  # 输入1然后再按回车
  1. ReturnEnter接受SERVERS目录的默认位置即可
----------------------------------------------------------------------
** Select the directory where the server definitions are maintained.
   Note: If this is the first time you are installing SOS,
         the SERVERS directory will be created.

** Current directory     : /edatools/source/sos/sos_7.05.p9_linux64
   Root installation dir : /edatools/clio
----------------------------------------------------------------------
Server definition dir (<enter> = /edatools/clio/SERVERS7): # Enter即可
  1. 确认安装的子目录名称
----------------------------------------------------------------------
** Specify a name for a SUB-directory where the release for this 
   platform should be installed. The sub-directory will be created
   in the root directory for the ClioSoft installation.

** Current directory     : /edatools/clio
   Root installation dir : /edatools/clio
   Server definition dir : /edatools/clio/SERVERS7

** Release               : 7.05.p9
   Platform              : linux64
----------------------------------------------------------------------
SUB-directory name to install release (<enter> = sos_7.05.p9_linux64): # Enter即可
  1. 确认安装目录
----------------------------------------------------------------------
** Confirm installation settings.

** Release               : 7.05.p9
   Platform              : linux64

** Installation dir      : /edatools/clio/sos_7.05.p9_linux64
   Server definition dir : /edatools/clio/SERVERS7
----------------------------------------------------------------------
Continue [y/n] (<enter> = y)? # Enter即可
  1. 显示环境变量,由于下面会介绍,所以这里输入n
  2. 是否发送邮件申请license,这里我就不申请了,输入n
  3. 安装目录结构示例
ls $CLIOSOFT_DIR
SERVERS7/ 
sos_7.05.p9_linux64/

三、配置环境变量

  • C Shell
setenv CLIOSOFT_DIR /edatools/clio/sos_7.05.p9_linux64
set path = ($path $CLIOSOFT_DIR/bin)
setenv LD_LIBRARY_PATH ${CLIOSOFT_DIR}/lib/64bit:${LD_LIBRARY_PATH}:${CLIOSOFT_DIR}/lib
setenv GDM_USE_SHLIB_ENVVAR 1
setenv CLIOLMD_LICENSE_FILE 21541@localhost
  • Bourne shell
export CLIOSOFT_DIR=/edatools/clio/sos_7.05.p9_linux64
export PATH=$PATH:$CLIOSOFT_DIR/bin
export GDM_USE_SHLIB_ENVVAR=1
export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:$CLIOSOFT_DIR/lib:$CLIOSOFT_DIR/lib/64bit
export CLIOLMD_LICENSE_FILE=21541@localhost

四、启动license

# 查看hostid
lmhostid

# 启动license
$CLIOSOFT_DIR/bin/lmgrd -c sos.lic -l /tmp/sos.log
  • license格式介绍
许可证文件条目 描述
SERVER 许可证服务器关键字
enter_hostname_here 许可证服务器主机名的占位符。用实际的主机名或IP地址替换这个字符串。所有用户需要能够使用指定的名称或地址ping通这个主机。
lmhostid_for_server lmhostid报告的主机ID
VENDOR 厂商关键字
cliolmd ClioSoft许可守护进程的名称
optional_cliolmd_path ClioSoft 许可证守护进程的路径。如果满足以下两种情况,则此路径是可选的:您使用的是24小时保留许可,并且将启动lmgrd守护进程的账户在其$PATH变量中包含$CLIOSOFT_DIR/bin
optional_options_file_path FlexNet选项文件的路径
USE_SERVER 关键字告诉FlexNet使用许可证服务器主机
FEATURE 每个FEATURE行授权一个ClioSoft产品。
通常,您的许可证文件中会有两行FEATURE:一行用于核心SOS软件,另一行用于SOS与您的EDA工具的集成(如上例中的Cadence Virtuoso)。
feature名称的_ul后缀表明这些是“用户持续”许可证,它们将被分配给任何单个用户24小时。如果没有这个后缀,该功能是通过命名用户许可授权的。
SOS_vers 主要的SOS版本号,例如6.0。FlexNet使用这个数字来验证许可证文件与您的SOS软件版本兼容。
exp_date 许可证到期日期
count 用户数量。该值显示您的组织购买了多少个命名用户许可证。使用命名用户许可,如果您定义的用户数量超过了授权数量,那么任何人都无法检出许可证。
license_key 特征的许可证密钥
USER_BASED 命名用户许可的关键字。如果您拥有这种类型的许可证,请更新ClioSoft发送给您的许可证文件中的VENDOR行,以指定一个标识授权用户的users.lst文件。
DUP_GROUP=U 关键字允许用户在多个显示上打开多个会话。

你可能感兴趣的:(Cliosoft,SOS,版本管理工具)