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
01-29-2001 09:49 AM
01-29-2001 09:49 AM
commands
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-29-2001 09:58 AM
01-29-2001 09:58 AM
Re: commands
# top
# dmesg
# glance
# grep -i physical /var/adm/syslog/OLDsyslog.log
...JRF...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-29-2001 10:06 AM
01-29-2001 10:06 AM
Re: commands
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-29-2001 10:10 AM
01-29-2001 10:10 AM
Re: commands
echo "sc product MEMORY;info;wait;infolog\ndone\n" | cstm
might need a different syntax for different version of diagnostics. So if product isn't correct syntax try type instead.
depending on what information you want, this will give some good numbers
echo "..." |cstm |
awk '/Memory Board Inventory/ {
flag=1;
}
/Memory Controller Inventory/ {
exit;
}
{if ( flag == 1 ) print $0;} '
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-29-2001 10:12 AM
01-29-2001 10:12 AM
Re: commands
/usr/sam/lbin/getmem
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-29-2001 12:24 PM
01-29-2001 12:24 PM
Re: commands
# top
Never have figured out what those numbers mean exactly...installed physical memory is not reported though
# dmesg
Only works if your console has not pushed the information off the top of the incore buffer.
# glance
glance -m works every time. The Phys Mem reports installed memory.
# grep -i physical /var/adm/syslog/OLDsyslog.log
Should work but often fails because a cron job is truncating syslog.
# /usr/sam/lbin/getmem
Doesn't seem to provide the correct info for 11.0 and 11i
Here's a simple script to ask the kernel:
MAJOREV=$(uname -r|cut -f 2 -d .)
if [ $MAJORREV -ge "11" ]
then
MYSYMBOL="phys_mem_pages"
else
MYSYMBOL="physmem"
fi
MYMEM=$(echo "${MYSYMBOL}/D" | adb /stand/vmunix /dev/kmem | grep "${MYSYMBOL}: *." | awk '{print int($2*4/1024+.5)}')
echo $MYMEM
Bill Hassell, sysadmin
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-30-2001 07:49 AM
01-30-2001 07:49 AM
Re: commands
http://forums.itrc.hp.com/cm/QuestionAnswer/1,1150,0x11e2f841489fd4118fef0090279cd0f9,00.html
http://forums.itrc.hp.com/cm/QuestionAnswer/1,1150,0x52e7f841489fd4118fef0090279cd0f9,00.html
http://forums.itrc.hp.com/cm/QuestionAnswer/1,1150,0x28930559ff7cd4118fef0090279cd0f9,00.html
The question is can SAM do it ? or better why SAM did not do it?.