- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- how to know about memory available?
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
09-05-2000 07:37 AM
09-05-2000 07:37 AM
with which command can i know how much RAM is on the computer (ram, not swap), without using dmesg.
thanks
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-05-2000 07:40 AM
09-05-2000 07:40 AM
Re: how to know about memory available?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-05-2000 07:41 AM
09-05-2000 07:41 AM
Re: how to know about memory available?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-05-2000 07:42 AM
09-05-2000 07:42 AM
Re: how to know about memory available?
You can enter dmesg.
You can also check this via SAM/Performance Monitors/System Properties and then look under the Memory tab.....it's all there!
Regards,
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-05-2000 07:49 AM
09-05-2000 07:49 AM
Re: how to know about memory available?
cat syslog.log |grep Physical:
vmunix: Physical: 524288 Kbytes, lockable: 441956 Kb
ytes, available: 472492 Kbytes
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-05-2000 07:53 AM
09-05-2000 07:53 AM
Re: how to know about memory available?
look at this thread:
http://my1.itrc.hp.com/cm/QuestionAnswer/1,1150,0xf36a7e990647d4118fee0090279cd0f9,00.html
Andy Monks has attached a little C program for this issue.
Regards
Andrew
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-05-2000 08:00 AM
09-05-2000 08:00 AM
Solution10.20
let MEM=$(echo 'physmem/D'| adb /stand/vmunix /dev/kmem | tail -1 | awk '{print $2}')
let MEM="(MEM+128)/256"
11.00
let MEM=$(echo 'phys_mem_pages/D'| adb /stand/vmunix /dev/kmem | tail -1 | awk '{print $2}')
let MEM="(MEM+128)/256"
In both cases, ${MEM} is in megabytes.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-05-2000 08:46 AM
09-05-2000 08:46 AM
Re: how to know about memory available?
/dev/mem (gives in number of bytes).
Or
cat /var/adm/syslog/syslog.log|grep Phy*
This will show you the Physical; Lockable and Available memory in Kbytes
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-05-2000 10:40 PM
09-05-2000 10:40 PM