- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Disk space and Total Memory
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
01-11-2002 12:03 PM
01-11-2002 12:03 PM
Disk space and Total Memory
I do not have root access..... lol
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-11-2002 12:05 PM
01-11-2002 12:05 PM
Re: Disk space and Total Memory
Try bdf for diskspace
grep -i physical /var/adm/syslog/syslog.log
for memory information
-USA
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-11-2002 12:11 PM
01-11-2002 12:11 PM
Re: Disk space and Total Memory
Try this
grep Physical /var/adm/syslog/syslog.log
If you didn't find it, then try OLDsyslog.log under the same directory.
This is possible if your admins did not change the default location or set the access restrictions.
Otherwise, ask your root administrator.
-Sri
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-11-2002 12:11 PM
01-11-2002 12:11 PM
Re: Disk space and Total Memory
'dmesg' will give you information about system memory.
'bdf' will show you the mounted file system's size.
As you don't have root access, you may not be able to run more commands, inorder to find out the exeact system information.
HTH,
Shiju
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-11-2002 01:26 PM
01-11-2002 01:26 PM
Re: Disk space and Total Memory
grep -i Physical: /var/adm/syslog/syslog.log |awk '{print $7}'
And try this for space still available:
#!/bin/ksh
#
PVLIST=`vgdisplay -v | grep "PV Name" | awk '{print $3}'`
for disk in $PVLIST
do
free=`pvdisplay $disk | grep "Free PE" | awk '{print $3}'`
integer EXPR
((EXPR=${free}*4))
((TOTAL=${TOTAL}+${EXPR}))
print $disk = $EXPR MB Free
done
print Total Free space = $TOTAL MB
HTH
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-11-2002 01:31 PM
01-11-2002 01:31 PM
Re: Disk space and Total Memory
/usr/sam/lbin/getmem
g'd luck
t++
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-11-2002 01:36 PM
01-11-2002 01:36 PM
Re: Disk space and Total Memory
If you have "Glance+" software installed on your system.
Try
#glance ->m to see total memory on your system.
#bdf will list all file systems on your system and its utilization.
Thanks.
Prashant.