- Community Home
- >
- Servers and Operating Systems
- >
- Operating System - HP-UX
- >
- System Administration
- >
- Physical Memory
-
-
Categories
- Topics
- Hybrid IT with Cloud
- Mobile & IoT
- IT for Data & Analytics
- Transformation
- Strategy and Technology
- Products
- Cloud
- Integrated Systems
- Networking
- Servers and Operating Systems
- Services
- Storage
- Company
- Events
- Partner Solutions and Certifications
- Welcome
- Welcome
- Announcements
- Tips and Tricks
- Feedback
-
Blogs
- Alliances
- Around the Storage Block
- Behind the scenes @ Labs
- Converged Data Center Infrastructure
- Digital Transformation
- Grounded in the Cloud
- HPE Careers
- HPE Storage Tech Insiders
- Infrastructure Insights
- Inspiring Progress
- Internet of Things (IoT)
- My Learning Certification
- Networking
- OEM Solutions
- Servers: The Right Compute
- Telecom IQ
- Transforming IT
-
Quick Links
- Community
- Getting Started
- FAQ
- Ranking Overview
- Rules of Participation
- Contact
- Email us
- Tell us what you think
- Information Libraries
- Integrated Systems
- Networking
- Servers
- Storage
- Other HPE Sites
- Support Center
- Enterprise.nxt
- Marketplace
- Aruba Airheads Community
-
Categories
-
Forums
-
Blogs
-
InformationEnglish
Physical Memory
- 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
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
02-15-2009 03:05 PM
02-15-2009 03:05 PM
Physical Memory
Physical Memory
Hi,
How to check the exact physical memory in
HP-UX Server?
Pls any one help me out.
Regards,
R.Sekar.
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
02-15-2009 03:28 PM
02-15-2009 03:28 PM
Re: Physical Memory
Re: Physical Memory
-->Performance Monitors
---->System Properties
------>tab to Memory
or just run the program:
print_manifest
Bill Hassell, sysadmin
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
02-15-2009 03:58 PM
02-15-2009 03:58 PM
Re: Physical Memory
Re: Physical Memory
Hi,
Any other commands to show the exact memory details.
If the server is romote server,iam not able to use the SAM,that time is there any commands to check the exact memory.
and how toc heckt he memory capacity in newly installed server.
Pls give the full details.
Regards,
Unixguy.
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
02-15-2009 04:02 PM
02-15-2009 04:02 PM
Re: Physical Memory
Re: Physical Memory
# echo "selclass qualifier memory;info;wait;infolog"|cstm > /tmp/meminfo
Regards!
...JRF...
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
02-15-2009 04:04 PM
02-15-2009 04:04 PM
Re: Physical Memory
Re: Physical Memory
If your server is of the Itanium class, simply use:
# machinfo
Regards!
...JRF...
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
02-15-2009 04:21 PM
02-15-2009 04:21 PM
Re: Physical Memory
Re: Physical Memory
How to find that server is itanum server or PA-Risc Server
Pls give the different command to check the exact memory.
Pls guide me
Regards,
R.Sekar.
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
02-15-2009 04:43 PM
02-15-2009 04:43 PM
Re: Physical Memory
Re: Physical Memory
SAM runs just fine as a remote program. Are you saying that you cannot login as root? If so, then you will have to run the print_manifest or the cstm command as an ordinary user.
print_manifest
or
echo "selclass qualifier memory;info;wait;infolog" | cstm
Both will produce a lot of details so you have to filter them with grep:
print_manifest | grep -i main.memory
or
echo "selclass qualifier memory;info;wait;infolog" | cstm | grep -i total.physical
Bill Hassell, sysadmin
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
02-15-2009 06:52 PM
02-15-2009 06:52 PM
Re: Physical Memory
Re: Physical Memory
>>How to check the exact physical memory in
HP-UX Server?
<<
dmesg | grep -i Phyical Memory
do you have Glance "installed" You can check using that
step1:- glance
Once the glance screen appears"
type m
(will show you extact Phyical memory)
Thanks,
Johnson
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
02-16-2009 12:00 AM
02-16-2009 12:00 AM
Re: Physical Memory
Re: Physical Memory
Use ;
machinfo|grep Memory
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
02-16-2009 12:20 AM
02-16-2009 12:20 AM
Re: Physical Memory
Re: Physical Memory
#print_manifest|grep Memory
in IA(Itanium) machine
#machinfo|grep Memory
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
02-16-2009 04:54 AM
02-16-2009 04:54 AM
Re: Physical Memory
Re: Physical Memory
> How to find that server is itanum server or PA-Risc Server
Simply do:
# uname -m
The output for Itanium will be "ia64".
The output for PA-RISC processors will be something like "9000/800". THe "9000" is the HP9000 series of UNIX machines.
Regards!
...JRF...
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
02-16-2009 05:00 AM
02-16-2009 05:00 AM
Re: Physical Memory
Re: Physical Memory
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
Pete
Pete
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
02-16-2009 10:17 AM
02-16-2009 10:17 AM
Re: Physical Memory
Re: Physical Memory
cat /var/adm/syslog/syslog.log| grep Physical
Please assing point to the post
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
02-17-2009 12:38 AM
02-17-2009 12:38 AM
Re: Physical Memory
Re: Physical Memory
# To get RAM size in KB
perl -e 'local($PSTAT,$PSTAT_STATIC,$mem_info,$PSTAT_STRUCT)=(239,2,"\0"x120,"LI4L");
syscall($PSTAT,$PSTAT_STATIC,$mem_info,length($mem_info),1,0);
print "RAM=".int((unpack($PSTAT_STRUCT,$mem_info))[4]*((unpack($PSTAT_STRUCT,$mem_info))[5])/(1024*1024))."\n";'
HTH,
Art
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
02-17-2009 09:57 AM
02-17-2009 09:57 AM
Re: Physical Memory
Re: Physical Memory
I think, the memconf-utility fits for you. It selects the type of host by itself. Look here:
http://www.4schmidts.com/unix.html
mfG Peter
Hewlett Packard Enterprise International
- Communities
- HPE Blogs and Forum
© Copyright 2018 Hewlett Packard Enterprise Development LP