- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- system inventory
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
07-15-2005 06:05 AM
07-15-2005 06:05 AM
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-15-2005 06:08 AM
07-15-2005 06:08 AM
Re: system inventory
As to free space, many variables can play a role hee. Are you running a cluster? Do you have shared disks?
On the basic level, a 'vgdisplay -v' command can provide that info. How many 'FREE PEs' do you have?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-15-2005 06:10 AM
07-15-2005 06:10 AM
Re: system inventory
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-15-2005 06:10 AM
07-15-2005 06:10 AM
Re: system inventory
Will provide lots more info as well.
http://www.cfg2html.com/
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-15-2005 06:10 AM
07-15-2005 06:10 AM
Re: system inventory
for SERVER in node1 node2 node3 ;do
echo $SERVER
remsh $SERVER -n /usr/bin/bdf
done
you can add other commands like pvdisplay or vgdisplay to match the information you desire.
This can also be done if you have Servicecontrol Manager installed and configured.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-15-2005 06:13 AM
07-15-2005 06:13 AM
Re: system inventory
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-15-2005 06:15 AM
07-15-2005 06:15 AM
Re: system inventory
nicket tool
bdf
diskinfo
print_manifest (ignite needs to be installed)
SCR (System configuration Repository software)
cf2html
Anil
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-15-2005 06:16 AM
07-15-2005 06:16 AM
Re: system inventory
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-15-2005 06:37 AM
07-15-2005 06:37 AM
Re: system inventory
use a shell script to gather the disk device names (/dev/dsk/cXtYdZ). In that script have a for loop that goes through each device and executes the diskinfo command against that device.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-15-2005 06:45 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-15-2005 06:47 AM
07-15-2005 06:47 AM
Re: system inventory
This will parse the lvmtab file and get the device names. It will convert the devices names to raw device names. Reading each line it will execute the diskinfo command.
strings /etc/lvmtab | grep /dev/dsk | sed 's/dsk/rdsk/g' | while read line
do
diskinfo $line
done
Remember, if there is MCSG or disk sharing in effect, do not trust these results. This is on a basic level of getting the requested info.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-15-2005 06:54 AM
07-15-2005 06:54 AM
Re: system inventory
ioscan -funCdisk |grep dsk |awk '{print $2}' |while read DISK ;do
diskinfo $DISK
done
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-15-2005 07:02 AM
07-15-2005 07:02 AM