View previous topic :: View next topic |
Author |
Message |
deadlycoder Beginner
Joined: 25 May 2006 Posts: 24 Topics: 11
|
Posted: Wed Aug 30, 2006 1:19 am Post subject: Operating system information |
|
|
Hi all,
I have to seek information regarding the operating system I am working on (for exampleIBM _________________ 'Achievement is almost automatic when the goal becomes an inner commitment' |
|
Back to top |
|
|
ofer71 Intermediate
Joined: 12 Feb 2003 Posts: 358 Topics: 4 Location: Israel
|
Posted: Wed Aug 30, 2006 2:04 am Post subject: |
|
|
There are some free utilities like TASID or IPLINFO. look for them in Google.
O.
________
Mercury Monterey history
Last edited by ofer71 on Sat Feb 05, 2011 11:46 am; edited 1 time in total |
|
Back to top |
|
|
kolusu Site Admin
Joined: 26 Nov 2002 Posts: 12375 Topics: 75 Location: San Jose
|
Posted: Wed Aug 30, 2006 7:26 am Post subject: |
|
|
deadlycoder,
You can also look into option 7.3 (Display/set variable information)
Kolusu _________________ Kolusu
www.linkedin.com/in/kolusu |
|
Back to top |
|
|
Bill Dennis Advanced
Joined: 03 Dec 2002 Posts: 579 Topics: 1 Location: Iowa, USA
|
Posted: Wed Aug 30, 2006 7:49 am Post subject: |
|
|
"DISPLAY IPLINFO" is now a system command at zOS 1.4, issue it via the console or SDSF (if authorized). ARCHLVL=2 says you're in 64bit mode. _________________ Regards,
Bill Dennis
Disclaimer: My comments on this foorum are my own and do not represent the opinions or suggestions of any other person or business entity. |
|
Back to top |
|
|
shekar123 Advanced
Joined: 22 Jul 2005 Posts: 528 Topics: 90 Location: Bangalore India
|
Posted: Tue Sep 05, 2006 8:08 am Post subject: |
|
|
Deadlycoder,
You can look for the variable ZOS390RL in option 7.3 as suggested by Kolusu.
Code: |
----+----1----+----2----+----3----+----4----+----5----+--
ZOS390RL S N z/OS 01.06.00
|
_________________ Shekar
Grow Technically |
|
Back to top |
|
|
Cogito-Ergo-Sum Advanced
Joined: 15 Dec 2002 Posts: 637 Topics: 43 Location: Bengaluru, INDIA
|
Posted: Thu Sep 07, 2006 5:05 pm Post subject: |
|
|
You might also want to traverse the MVS Control Blocks to get information such as CPU IDs, etc. Of course, you need to know the precise location for system related information. Then, getting the information is easy. Here is an example of getting the CPU ID in REXX :
Code: |
/*REXX*/
cvtad = storage(10,4)
pccavtad = storage(d2x(c2d(cvtad) + 764),4)
pcca_0ad = storage(d2x(c2d(pccavtad)+4),4)
say "cpu id is " storage(d2x(c2d(pcca_0ad)+4),12)
exit
|
_________________ ALL opinions are welcome.
Debugging tip:
When you have eliminated all which is impossible, then whatever remains, however improbable, must be the truth.
-- Sherlock Holmes. |
|
Back to top |
|
|
|
|