Interview Questions Answers.ORG
Interviewer And Interviewee Guide
Interviews
Quizzes
Home
Quizzes
Interviews Technical IBM Tools Interviews:IBM AIXIBM Netcool/OmnibusIBM TivoliMAXIMO
Copyright © 2018. All Rights Reserved
IBM Tivoli Interview Question:
For fresh ITM agent installation, what agent version should be used?
Submitted by: AdministratorFor fresh itm agent installation , we need to use below agent version dump as shared with you:
For aix 5.3 - ux_06210000_aix526
For linux 2.6 32 bit - lz_062100000_li6263
Submitted by: Administrator
For aix 5.3 - ux_06210000_aix526
For linux 2.6 32 bit - lz_062100000_li6263
Submitted by: Administrator
AIX:
echo `uname|tr [A-Z] [a-z] ``uname -v``uname -r``bootinfo -K|cut -c1`
Linux:
if [ "`uname -m`" = i686 ] || [ "`uname -m`" = s390 ]
then echo "l"`uname -m|cut -c1-2``uname -r|cut -c1``uname -r|cut -c3`"3"
else echo "l"`uname -m|cut -c1-2``uname -r|cut -c1``uname -r|cut -c3`"6"
fi
Solaris:
if [ `uname -r | cut -d. -f2` -lt 10 ]
then echo "sol2"`uname -r | cut -d. -f2``isainfo -b | cut -c1`
elif [ "`uname -m | cut -c1 | grep i`" = i ]
then echo "sol6"`uname -r | cut -c4-``isainfo -b | cut -c1`
else echo "sol5"`uname -r | cut -c4-``isainfo -b | cut -c1`
fi
Susy Linux
if [ "`uname -m`" = i686 ] || [ "`uname -m`" = s390 ]
then
echo "l"`uname -m|cut -c1-2``uname -r||cut -c1``uname -r|cut -c3`"3"
echo "l"`uname -m|cut -c1-2``uname -r||cut -c1``uname -r|cut -c3`"6"
fi
using those commands we need to check the compatibility and need to install ITM agent. Windows 32bit and 64bit 2 packages will be available,
Submitted by: Dipsmita Das
echo `uname|tr [A-Z] [a-z] ``uname -v``uname -r``bootinfo -K|cut -c1`
Linux:
if [ "`uname -m`" = i686 ] || [ "`uname -m`" = s390 ]
then echo "l"`uname -m|cut -c1-2``uname -r|cut -c1``uname -r|cut -c3`"3"
else echo "l"`uname -m|cut -c1-2``uname -r|cut -c1``uname -r|cut -c3`"6"
fi
Solaris:
if [ `uname -r | cut -d. -f2` -lt 10 ]
then echo "sol2"`uname -r | cut -d. -f2``isainfo -b | cut -c1`
elif [ "`uname -m | cut -c1 | grep i`" = i ]
then echo "sol6"`uname -r | cut -c4-``isainfo -b | cut -c1`
else echo "sol5"`uname -r | cut -c4-``isainfo -b | cut -c1`
fi
Susy Linux
if [ "`uname -m`" = i686 ] || [ "`uname -m`" = s390 ]
then
echo "l"`uname -m|cut -c1-2``uname -r||cut -c1``uname -r|cut -c3`"3"
echo "l"`uname -m|cut -c1-2``uname -r||cut -c1``uname -r|cut -c3`"6"
fi
using those commands we need to check the compatibility and need to install ITM agent. Windows 32bit and 64bit 2 packages will be available,
Submitted by: Dipsmita Das
Copyright 2007-2025 by Interview Questions Answers .ORG All Rights Reserved.
https://InterviewQuestionsAnswers.ORG.
https://InterviewQuestionsAnswers.ORG.