- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: checking Ram and hard disk space
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
03-13-2002 06:26 AM
03-13-2002 06:26 AM
checking Ram and hard disk space
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-13-2002 06:29 AM
03-13-2002 06:29 AM
Re: checking Ram and hard disk space
A lot of commands:
1) Use STM (for listing of all information)
2) ioscan -fn
3) bdf
4) diskinfo
5) vgdisplay -v
6) dmesg ( will tell you about RAM )
7) print_manifest
HTH,
Shiju
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-13-2002 06:31 AM
03-13-2002 06:31 AM
Re: checking Ram and hard disk space
What do you mean by checking ram and hard disk space. If you mean the capacity of RAM and the hard disk sizes, you can try this,
gmesg |grep Phy
This will give your the total RAM on your system. To find the module sizes and all, try,
echo 'selclass qualifier memory;info;wait;infolog' |cstm > /tmp/meminfo.txt
more /tmp/meminfo.txt
To look for the disks into your systems, do a ioscan,
ioscan -fnkC disk
Then fore each disk you can do a diskinfo,
diskinfo -v /dev/rdsk/cxtydz
or you can generate a stm report,
echo 'selclass type disk;info;wait;infolog' |cstm >/tmp/disk_info.txt
more /tmp/disk_info.txt
Hope this helps.
Regds
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-13-2002 06:32 AM
03-13-2002 06:32 AM
Re: checking Ram and hard disk space
nickel script to collect this info and more in html format.
You can look internals to check the command line:
Download from here:
http://www.grc.hp.com/docs/nickel/
Later,
Bill
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-13-2002 06:33 AM
03-13-2002 06:33 AM
Re: checking Ram and hard disk space
# dmesg | grep -i physical
or
#swapinfo -mt
the memory raw will give you the physical memory.
For checking hard disk space you need to run following :
#diskinfo -b /dev/rdsk/cxtydz (depending upon disk name.
This will give you figure in KB. dividing by 1000 you will get size of disk in MBs.
Hope this helps.
-Piyush.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-13-2002 06:34 AM
03-13-2002 06:34 AM
Re: checking Ram and hard disk space
Also in SAM you can go to DISKS AND FILE SYSTEMS and then choose from the menu to see information on actual disks, volume groups, logical volumes, etc.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-13-2002 07:09 AM
03-13-2002 07:09 AM
Re: checking Ram and hard disk space
Sandip