Operating System - Tru64 Unix
1748035 Members
5232 Online
108757 Solutions
New Discussion юеВ

Re: How to check physical memory from Tru64 Unix

 
SOLVED
Go to solution
Bobcat_1
Advisor

How to check physical memory from Tru64 Unix

Hardware - DS25 with 4GB Memory on Tru64 Unix v5.1B

Need to check the physical memory layout of the server (eg - whether it is a 512mb or 256mb).
How do we check this via Unix WITHOUT shutting down the server. Is it possible ?

Thanks.
9 REPLIES 9
roland krahbichler
New Member
Solution

Re: How to check physical memory from Tru64 Unix

you can see the DIMM├В┬┤s with the HP insight manager
Slayer Slayer
Frequent Advisor

Re: How to check physical memory from Tru64 Unix

Hey Bobcat,

Have a look at the binnary.errlog, it tells you the physical memory and available memory. Another approach on V5.x systems is to use the hwmgr command (e.g. hwmgr -show scsi, hwmgr -show comp).


HTP

Regards

Bruno
akshay_2
New Member

Re: How to check physical memory from Tru64 Unix

If atall you have a recorded "sys_check" report with you, it may help you out.
Particularly the hwmgr section.

Regards,
Akshay.
Nigel Halliday
Occasional Advisor

Re: How to check physical memory from Tru64 Unix

Try:

grep -i physical /var/adm/messages

Depending on last time system was booted and whether you clean up the messages file.

Nigel
Tanapong Eamsoponkul
Occasional Advisor

Re: How to check physical memory from Tru64 Unix

Try this Command :
vmstat -P |grep "^Total Physical Memory"
Tanapong Eamsoponkul
Occasional Advisor

Re: How to check physical memory from Tru64 Unix

http:/{Servername}:2301
and Click "System Board"
See "Memory Module" Section
Slayer Slayer
Frequent Advisor

Re: How to check physical memory from Tru64 Unix

Hey BobCat,

Please assign some points to those who spent time trying to answer your question.

:-)

Regards

Bruno
Francesco Sarno
Frequent Advisor

Re: How to check physical memory from Tru64 Unix

Hi bobcat,
type as root :'uerf -R|grep -i memory'
There is a raw that tell you the amount of phisical memory on your system.

Bye, F.
Bobcat_1
Advisor

Re: How to check physical memory from Tru64 Unix

The solution has been found.
Thank you all.