 Question:
I am in the process of installing a emulator into our Sun Solaris 2.x system. The target
is a Mizar MZ4700 Dual C80 VME board. I believe that I have followed the installation
instructions completely. After installation, the following four operating anomalies occur:
Answer: Under the Solaris OS,
only root can execute the XDS510 commands. To get around this, you can execute the
following script:
**** BEGINNING OF SCRIPT ****
#! /bin/csh -f
# you must be root in order to execute this installation
# You MUST do a change directory to the place which contains
# the emulator executables before you execute this script.
# This script makes the chmodS that allow for use in Solaris.
for each file ( emurst mpemu ppemu pdm mvp510ws.out composer board.cfg )
if ( -e $file )
then echo " fixing: $file"
chmod 6755 $file
chown root $file
else
echo " Skipping file: $file"
endif
end
***** END OF SCRIPT ***** |