- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Disk space, Memory, Processor....etc
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
11-16-2000 01:34 PM
11-16-2000 01:34 PM
What command will show me how check how much disk space are there on the system?
What command will show how much memory does the machine have on the system?
What command will tell how many processors are there on the system?
Could you tell me the command to find out what the serial lines is as well as teh internet hardware address.
Thank you.
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-16-2000 01:45 PM
11-16-2000 01:45 PM
Re: Disk space, Memory, Processor....etc
dmesg for memory
top shows the processors and the top processes
You can get information about the system from
SAM the System Administration Tool.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-16-2000 01:46 PM
11-16-2000 01:46 PM
Re: Disk space, Memory, Processor....etc
"iskinfo /dev/rdsk/c?d?t?" shows the disk sie.
"emsg" shows the memory information
"top"can give you the number of active CPU's.
"netstat -in" can display the IP address.
Regards,
Pramod
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-16-2000 01:46 PM
11-16-2000 01:46 PM
Re: Disk space, Memory, Processor....etc
"dskinfo /dev/rdsk/c?d?t?" shows the disk sie.
"demsg" shows the memory information
"top"can give you the number of active CPU's.
"netstat -in" can display the IP address.
Regards,
Pramod
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-16-2000 01:58 PM
11-16-2000 01:58 PM
Solutionall of these questions have been answered in earlier posts. You might want to do a search for disk space or memory or processor for more information.. to start you off:
bdf (to give you usage of filesystems in volume groups)
vgdisplay | grep Free (for information on how much of disks are not allocated in logical volumes)
ioscan -fnC disk (to show all disks)
grep Physical /var/adm/syslog/syslog.log ( for amount of ram)
grep -c processor /var/adm/syslog/syslog.log (for number of processors)
there are others...
you might want to look into installing stm if you do not already have it installed.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-16-2000 11:17 PM
11-16-2000 11:17 PM
Re: Disk space, Memory, Processor....etc
In additio to all indicated by the other replies you can use this:
About memory dimension you could use these commands that change with the OS version:
10.20 -> #REAL_MEM=`echo 'physmem/D'| adb -k /stand/vmunix /dev/kmem | tail -1 | awk '{print $2/256 }'
11.00) -> #REAL_MEM=`echo 'phys_mem_pages/D'| adb -k /stand/vmunix /dev/kmem | tail -1 | awk '{print $2/256 }'
#echo $REAL_MEM (to visualize the value)
About the CPU numbers:
#ioscan -fC processor | grep processor | wc -l
About the IP address:
# lanscan ( to know the interface name -> for example lanx )
# ifconfig lanx
regards,
federico
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-17-2000 01:59 AM
11-17-2000 01:59 AM
Re: Disk space, Memory, Processor....etc
dmesg
bdf (filesystem size)
vgdisplay -v |grep Free
ioscan -fnC
grep Physical /var/adm/syslog/syslog.log ( dmesg will give same information)
grep -c processor /var/adm/syslog/syslog.log
Also check /var/tombstones/ts** for the firmware and models of your processors.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-21-2000 01:46 AM
11-21-2000 01:46 AM
Re: Disk space, Memory, Processor....etc
You can use the following commands.
1. # bdf
2. # /usr/sam/lbin/getmem
3. #top
4. You can't check serial # from command line.
Thanks
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-21-2000 08:47 PM
11-21-2000 08:47 PM
Re: Disk space, Memory, Processor....etc
Jon
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-06-2001 06:21 PM
03-06-2001 06:21 PM
Re: Disk space, Memory, Processor....etc
"/usr/sam/lbin/laninfo" for lancard information.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-17-2001 03:52 AM
05-17-2001 03:52 AM
Re: Disk space, Memory, Processor....etc
get it http://rose_swe.tripod.com/cfg/cfg.html
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-02-2001 10:55 AM
08-02-2001 10:55 AM
Re: Disk space, Memory, Processor....etc
I am very bad recalling URLs. Sure that next post will say you where you can find it.