rc.local.add

来自「Vxworks的培训教程,大家分享下啊,」· ADD 代码 · 共 68 行

ADD
68
字号
# Edit, then add this to the rc.local file (SunOS).# Not all portions of this file are needed on all hosts!#For sunos (Tornado 1.0.1)#### Modify the following line to specify the tornado installation directorywind_base=/u/windwind_bin=$wind_base/sun4-sunos4/bin#### The following lines should be added to the rc.local.add file for##   all lab station hosts (all hosts running VxSim).##   Remove these lines on hosts not running VxSim.install ULIP driver for vxSim 5.3.1olddir77=`pwd`cd $wind_binif [ -x ./installUlip ]; then	./installUlipelse	echo "installUlip not found at $wind_bin/installUlip"ficd $olddir77############## The following lines should be added to the rc.local.add file on##   the host running the Wind License Manager Daemon (wlmd).##	 Remove these lines on hosts not running the wlmd.WLMD=$wind_bin/wlmdLICDIR=$wind_base/.wind/licenseWLMDLOG=/tmp/wlmdlog#Startup the license server deamon for Tornado on system boot.if [ -x $WLMD ]; then	$WLMD -e $LICDIR -s0 -m 50k -l $WLMDLOG -v 3	echo "Wind License Manager Daemon started."else	echo "wlmd not found at path $WLMD."fi############## The following lines should be added to rc.local.add on the host##   running the Tornado Registry. ##	 Remove these lines on hosts not running a shared Tornado Registry.REGISTRY=$wind_bin/wtxregd# Start registry for Tornado on system boot.if [ -x $REGISTRY ]; then	$REGISTRY &	echo "Tornado registry deamon started."else	echo "wtxregd not found at path $REGISTRY"fi##########

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?