- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- getting info out of sysinfo
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-15-2008 08:15 AM
12-15-2008 08:15 AM
getting info out of sysinfo
Model
Serial Number
OS version
Installed CPU
Active CPU
CPU speed
Total Memory
Actived Memory
IP Address
from the server. any idea how to do it.
Thanks
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-15-2008 08:25 AM
12-15-2008 08:25 AM
Re: getting info out of sysinfo
There are numerous posts in this Forum that will point you to a solution. A useful compendium of the information you seek can be found in Ignite's print_manifest:
'/var/opt/ignite/recovery/latest/manifest'
Regards!
...JRF...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-15-2008 08:35 AM
12-15-2008 08:35 AM
Re: getting info out of sysinfo
serial number
installed cpu
active cpu
cpu speed
total memory
active memory
thanks
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-15-2008 08:39 AM
12-15-2008 08:39 AM
Re: getting info out of sysinfo
make a list called file.
serial number
installed cpu
active cpu
cpu speed
total memory
active memory
while read -r data
do
grep $data filename >> output_file
done < file
Output file has the relavent data in it.
In essence, you have to write a script. You can either hunt around for one and modify it or write it yourself.
Check my profile sysadmin scripts, lots of good stuff in there.
SEP
Owner of ISN Corporation
http://isnamerica.com
http://hpuxconsulting.com
Sponsor: http://hpux.ws
Twitter: http://twitter.com/hpuxlinux
Founder http://newdatacloud.com
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-15-2008 08:40 AM
12-15-2008 08:40 AM
Re: getting info out of sysinfo
command is getconf_MACHINE_SERIAL
for other fields..
command is cstm
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-15-2008 08:42 AM
12-15-2008 08:42 AM
Re: getting info out of sysinfo
cat myinfo.sh
print_manifest > manifesto
grep Serial manifesto
grep OS manifesto
etc.
etc.
It would take you a couple of minutes to examine the print_manifest output and construct your grep statements, but I'm sure you're capable of that.
Pete
Pete
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-15-2008 09:01 AM
12-15-2008 09:01 AM
Re: getting info out of sysinfo
You should use sysinfo and grep the info that you need. Also, you can use serialnum to get serial number from 11iv3.
Also, try to install a utility called sysinfo
Cheers,
Taq