- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: HP Machine Specifics
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
02-17-2005 03:06 AM
02-17-2005 03:06 AM
HP Machine Specifics
I am an AIX admin, and have a few HP machines. I want to get the specifications of these HP machines. Can you tell me what are the commands to use so tha ti can fine out the specifications like:
1) Number of CPU,
2) CPU type
3) CPu speed
4) Paging space (and used %)
5) amt of memory (and used %)
6) Kernel type (32 bit or 64 bit)
7) Firmware version
8) If Raid is being used and if so waht level
etc etc
in AIX i can get most of the info by using commands like lsconf, lsdev, lsattrr, lsps, lscfg, uname, etc.
Are there any simillar commands i can use on HP? I got some info like model using the uname and model commands.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-17-2005 03:14 AM
02-17-2005 03:14 AM
Re: HP Machine Specifics
1
# ioscan -fnkC processor
2
# model
9000/800/L2000-44
# grep L2000 /usr/sam/lib/mo/sched.models
3
# echo itick_per_usec/D | adb -k /stand/vmunix /dev/mem
6
# file /stand/vmunix
7
# grep -i version /var/tombstones/ts99
Robert-Jan
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-17-2005 03:15 AM
02-17-2005 03:15 AM
Re: HP Machine Specifics
1) ioscan -k |grep -n processor |wc -l
2) maybe through STM
3) echo itick_per_tick/D \
| adb -k $HPUX /dev/kmem \
| tail -1 \
| awk '{print $2/10000}'
4) swapinfo -tam
5) HPUX=/stand/vmunix
MAJORREV=$(uname -r | cut -f2 -d .)
if [ $MAJORREV -ge "11.0" ]
then
MYSYMBOL="phys_mem_pages"
else
MYSYMBOL="physmem"
fi
MYMEM=$(echo "${MYSYMBOL}/D" \
| adb $HPUX /dev/kmem \
| grep "${MYSYMBOL}: *." \
| awk '{printf "%.0f MB\n",$2/256}')
echo $MYMEM
6) file /stand/vmunix
7) maybe STM
8) depends on the array
Pete
Pete
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-17-2005 03:17 AM
02-17-2005 03:17 AM
Re: HP Machine Specifics
2. & 3. echo "selclass qualifier cpu;info;wait;infolog"|cstm
4. vmstat, swapinfo
5. glance -m (you need to have glance)
Else vmstat to know free mem. grep -i physical /var/adm/syslog/syslog.log - total ram on machine
6. file /stand/vmunix or getconf KERNEL_BITS
7. same as 2 and 3 (Firmware version of what)
8. SAM - disk management. Or arm commands.
Anil
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-17-2005 03:27 AM
02-17-2005 03:27 AM
Re: HP Machine Specifics
2) See "man stm" it's not very friendly, I'm afraid.
3) stm again, unfortunately
4) swapinfo (glance may also be useful, depending what you want)
5) swapinfo (glance may also be useful, depending what you want)
6)"file /stand/vmunix" The following output shows that it's a 64 bit kernel:
/stand/vmunix: ELF-64 executable object file - PA-RISC 2.0 (LP64)
I'm afraid I'll have to say "pass" on 7 & 8
I look forward to seeing the answers myself!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-17-2005 03:38 AM
02-17-2005 03:38 AM
Re: HP Machine Specifics
"getconf HW_CPU_SUPP_BITS" for the running kernel
cpu speed is usually enconded in the output of
"model"
Firmware is only available through the GSP (guardian service processor), I think.
RAID? - software raid?
lvdisplay -v /dev/vg
also a lot of hardware information is available in the STM, called by 'mstm'