<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Disk space and Total Memory in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/disk-space-and-total-memory/m-p/2643349#M44319</link>
    <description>To add to above the following command get you the Physical memory size: &lt;BR /&gt;/usr/sam/lbin/getmem&lt;BR /&gt;g'd luck&lt;BR /&gt;t++</description>
    <pubDate>Fri, 11 Jan 2002 21:31:34 GMT</pubDate>
    <dc:creator>T. M. Louah</dc:creator>
    <dc:date>2002-01-11T21:31:34Z</dc:date>
    <item>
      <title>Disk space and Total Memory</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/disk-space-and-total-memory/m-p/2643344#M44314</link>
      <description>Does anyone have a quick script that will tell me the total memory and total disk space?&lt;BR /&gt;&lt;BR /&gt;I do not have root access..... lol</description>
      <pubDate>Fri, 11 Jan 2002 20:03:19 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/disk-space-and-total-memory/m-p/2643344#M44314</guid>
      <dc:creator>Mike_21</dc:creator>
      <dc:date>2002-01-11T20:03:19Z</dc:date>
    </item>
    <item>
      <title>Re: Disk space and Total Memory</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/disk-space-and-total-memory/m-p/2643345#M44315</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;Try bdf for diskspace &lt;BR /&gt;&lt;BR /&gt;grep -i physical /var/adm/syslog/syslog.log&lt;BR /&gt;&lt;BR /&gt;for memory information&lt;BR /&gt;&lt;BR /&gt;-USA&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Fri, 11 Jan 2002 20:05:55 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/disk-space-and-total-memory/m-p/2643345#M44315</guid>
      <dc:creator>Uday_S_Ankolekar</dc:creator>
      <dc:date>2002-01-11T20:05:55Z</dc:date>
    </item>
    <item>
      <title>Re: Disk space and Total Memory</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/disk-space-and-total-memory/m-p/2643346#M44316</link>
      <description>Hi Mike,&lt;BR /&gt;&lt;BR /&gt;Try this&lt;BR /&gt;&lt;BR /&gt;grep Physical /var/adm/syslog/syslog.log&lt;BR /&gt;&lt;BR /&gt;If you didn't find it, then try OLDsyslog.log under the same directory.&lt;BR /&gt;&lt;BR /&gt;This is possible if  your admins did not change the default location or set the access restrictions.&lt;BR /&gt;&lt;BR /&gt;Otherwise, ask your root administrator.&lt;BR /&gt;&lt;BR /&gt;-Sri</description>
      <pubDate>Fri, 11 Jan 2002 20:11:50 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/disk-space-and-total-memory/m-p/2643346#M44316</guid>
      <dc:creator>Sridhar Bhaskarla</dc:creator>
      <dc:date>2002-01-11T20:11:50Z</dc:date>
    </item>
    <item>
      <title>Re: Disk space and Total Memory</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/disk-space-and-total-memory/m-p/2643347#M44317</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;'dmesg' will give you information about system memory.&lt;BR /&gt;'bdf' will show you the mounted file system's size.&lt;BR /&gt;&lt;BR /&gt;As you don't have root access, you may not be able to run more commands, inorder to find out the exeact system information.&lt;BR /&gt;&lt;BR /&gt;HTH,&lt;BR /&gt;Shiju</description>
      <pubDate>Fri, 11 Jan 2002 20:11:54 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/disk-space-and-total-memory/m-p/2643347#M44317</guid>
      <dc:creator>Helen French</dc:creator>
      <dc:date>2002-01-11T20:11:54Z</dc:date>
    </item>
    <item>
      <title>Re: Disk space and Total Memory</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/disk-space-and-total-memory/m-p/2643348#M44318</link>
      <description>Try this for memory:&lt;BR /&gt;grep -i Physical: /var/adm/syslog/syslog.log |awk '{print $7}'&lt;BR /&gt;&lt;BR /&gt;And try this for space still available:&lt;BR /&gt;#!/bin/ksh&lt;BR /&gt;#&lt;BR /&gt;PVLIST=`vgdisplay -v | grep "PV Name" | awk '{print $3}'`&lt;BR /&gt;for disk in $PVLIST&lt;BR /&gt;do&lt;BR /&gt;  free=`pvdisplay $disk | grep "Free PE" | awk '{print $3}'`&lt;BR /&gt;  integer EXPR&lt;BR /&gt;  ((EXPR=${free}*4))&lt;BR /&gt;  ((TOTAL=${TOTAL}+${EXPR}))&lt;BR /&gt;print $disk = $EXPR MB Free&lt;BR /&gt;done&lt;BR /&gt;print Total Free space = $TOTAL MB&lt;BR /&gt;&lt;BR /&gt;HTH&lt;BR /&gt;</description>
      <pubDate>Fri, 11 Jan 2002 21:26:14 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/disk-space-and-total-memory/m-p/2643348#M44318</guid>
      <dc:creator>D. Jackson_1</dc:creator>
      <dc:date>2002-01-11T21:26:14Z</dc:date>
    </item>
    <item>
      <title>Re: Disk space and Total Memory</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/disk-space-and-total-memory/m-p/2643349#M44319</link>
      <description>To add to above the following command get you the Physical memory size: &lt;BR /&gt;/usr/sam/lbin/getmem&lt;BR /&gt;g'd luck&lt;BR /&gt;t++</description>
      <pubDate>Fri, 11 Jan 2002 21:31:34 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/disk-space-and-total-memory/m-p/2643349#M44319</guid>
      <dc:creator>T. M. Louah</dc:creator>
      <dc:date>2002-01-11T21:31:34Z</dc:date>
    </item>
    <item>
      <title>Re: Disk space and Total Memory</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/disk-space-and-total-memory/m-p/2643350#M44320</link>
      <description>HI&lt;BR /&gt;If you have "Glance+" software installed on your system.&lt;BR /&gt;Try&lt;BR /&gt;#glance -&amp;gt;m to see total memory on your system.&lt;BR /&gt;&lt;BR /&gt;#bdf will list all file systems on your system and its utilization.&lt;BR /&gt;&lt;BR /&gt;Thanks.&lt;BR /&gt;Prashant.</description>
      <pubDate>Fri, 11 Jan 2002 21:36:08 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/disk-space-and-total-memory/m-p/2643350#M44320</guid>
      <dc:creator>Deshpande Prashant</dc:creator>
      <dc:date>2002-01-11T21:36:08Z</dc:date>
    </item>
  </channel>
</rss>

