where can i check the log files to find out if my mksysb was successfull or not. if i run it from smit i know i can check smit.log to find out the same but where can i check the logs if i run it from command line?
Just type "echo $?" when it is done. Let me attach my "mksysb.sh" script I created. Look at the "log" variable at the end to see what the log filename is.
Regards, Bill.
#! /bin/ksh
#
# Program to run mksysb
#
validate() {
if [ "$tape_drive" = "" ] ; then
tape_drive="/dev/rmt0"
fi
if [ ! -r $tape_drive ] ; then
echo "Unknown tape drive specified - $tape_drive"
a=1
fi
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.