<?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: VX patch install using too much space in / in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/vx-patch-install-using-too-much-space-in/m-p/4977518#M419112</link>
    <description>From a call I placed last year:&lt;BR /&gt;&lt;BR /&gt;there is a S.R. on that -- you can't remove it&lt;BR /&gt;VERITAS have recently released a 11.11 VxVM 3.5 patch&lt;BR /&gt;[PHCO_30850/PACHRDME/English] which installs a 29MB file at&lt;BR /&gt;"/etc/vx/static.d/build/vold.o". The huge vold.o is due to the inclusion&lt;BR /&gt;of debug symbols as a result of JAGaf37554. This object file is&lt;BR /&gt;necessary for recompiling a static vxconfigd binary (under&lt;BR /&gt;/etc/vx/type/static/vxconfigd) in case some VERITAS ASL (array support&lt;BR /&gt;library) is installed. The huge vold.o is due to the inclusion of debug&lt;BR /&gt;symbols as a result of JAGaf37554. The static vxconfigd recompiled using&lt;BR /&gt;this vold.o is also 29MB in size. That means the installation of&lt;BR /&gt;[PHCO_30850/PACHRDME/English] will request 29*2MB in the root&lt;BR /&gt;filesystem for customers having an ASL installed. That creates a lot of&lt;BR /&gt;burden on the root filesystem which is currently defaulted at &amp;lt;300MB.&lt;BR /&gt;&lt;BR /&gt;It is known that pxdb can optimize the debug information in the&lt;BR /&gt;recompiled static vxconfigd to reduce its size to 5MB. For systems&lt;BR /&gt;having the compiler bundle installed, ld will find pxdb under the&lt;BR /&gt;default path /opt/langtools/bin/pxdb and will run pxdb automatically on&lt;BR /&gt;the executable. But the intermediate program would still be 29Mb before&lt;BR /&gt;it was pxdbed.&lt;BR /&gt;Although [PHCO_30850/PACHRDME/English] is a 11.11 patch, VERITAS will&lt;BR /&gt;be including the debug symbols in vold.o for VxVM patches on 11.23 and&lt;BR /&gt;later VxVM releases, thus this request to increase the default root&lt;BR /&gt;filesystem size on 11.23 and onwards. VERITAS also wants to increase the&lt;BR /&gt;default size of the stand filesystem at the same time as both root and&lt;BR /&gt;stand filesystems cannot be easily extended.&lt;BR /&gt;CR# JAGaf51230 problem This enhancement request is asking for the&lt;BR /&gt;default sizes for the root filesystem and /stand to be changed and also&lt;BR /&gt;(optionally) to allow /etc/vx/static.d/build to be a mounted filesystem.&lt;BR /&gt;&lt;BR /&gt;Rgds...Geoff&lt;BR /&gt;&lt;BR /&gt;</description>
    <pubDate>Fri, 05 May 2006 16:25:32 GMT</pubDate>
    <dc:creator>Geoff Wild</dc:creator>
    <dc:date>2006-05-05T16:25:32Z</dc:date>
    <item>
      <title>VX patch install using too much space in /</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/vx-patch-install-using-too-much-space-in/m-p/4977514#M419108</link>
      <description>We accidentally installed some vx patches, PHCO_30850, PHCO_31203 and PHKL_30756 which caused the /etc/vx directory to use 60mb.  Our production systems only have a 200mb / , so we are struggling with space.  Short of unininstalling thes patches, anyone have ideas on what I could do to free up the space?  We tried removing it, but apparently onlineJFS and bootup uses some pieces in here.  We are not using VX as our filesystem manager, we use LVM.  Thanks...Michelle</description>
      <pubDate>Fri, 05 May 2006 10:16:11 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/vx-patch-install-using-too-much-space-in/m-p/4977514#M419108</guid>
      <dc:creator>Michelle Barton</dc:creator>
      <dc:date>2006-05-05T10:16:11Z</dc:date>
    </item>
    <item>
      <title>Re: VX patch install using too much space in /</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/vx-patch-install-using-too-much-space-in/m-p/4977515#M419109</link>
      <description>200Mb should be sufficient.  I'd be tempted to check for other things in / taking up space.&lt;BR /&gt;&lt;BR /&gt;Check for core files: -&lt;BR /&gt;&lt;BR /&gt;find / -name *core* -xdev&lt;BR /&gt;&lt;BR /&gt;Check for large files example is &amp;gt; 10Mb): -&lt;BR /&gt;&lt;BR /&gt;find / -size +10000000 -xdev&lt;BR /&gt;&lt;BR /&gt;It's not uncommon for misplaces files to fill up /.</description>
      <pubDate>Fri, 05 May 2006 10:23:21 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/vx-patch-install-using-too-much-space-in/m-p/4977515#M419109</guid>
      <dc:creator>Simon Hargrave</dc:creator>
      <dc:date>2006-05-05T10:23:21Z</dc:date>
    </item>
    <item>
      <title>Re: VX patch install using too much space in /</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/vx-patch-install-using-too-much-space-in/m-p/4977516#M419110</link>
      <description>Take a look in /dev/to make sure there are no normal files in there. A common error is for someone to do a tar backup, and specify an incorrect target file, which ends up being a large normal file in /dev, e.g.:&lt;BR /&gt;cd /home/mydir&lt;BR /&gt;tar cvf /dev/rmt/om *&lt;BR /&gt;&lt;BR /&gt;This means that you get a normal file om in /dev/rmt instead of it going to teh tape at /dev/rmt/0m&lt;BR /&gt;</description>
      <pubDate>Fri, 05 May 2006 15:30:40 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/vx-patch-install-using-too-much-space-in/m-p/4977516#M419110</guid>
      <dc:creator>melvyn burnard</dc:creator>
      <dc:date>2006-05-05T15:30:40Z</dc:date>
    </item>
    <item>
      <title>Re: VX patch install using too much space in /</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/vx-patch-install-using-too-much-space-in/m-p/4977517#M419111</link>
      <description>I decided to gzip some of the files under /etc/vx after testing.  This reduced the dir from 60mb to 20mb.  When you're talking only 200mb filesystem, that's pretty good.&lt;BR /&gt;&lt;BR /&gt;Thanks!</description>
      <pubDate>Fri, 05 May 2006 15:35:07 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/vx-patch-install-using-too-much-space-in/m-p/4977517#M419111</guid>
      <dc:creator>Michelle Barton</dc:creator>
      <dc:date>2006-05-05T15:35:07Z</dc:date>
    </item>
    <item>
      <title>Re: VX patch install using too much space in /</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/vx-patch-install-using-too-much-space-in/m-p/4977518#M419112</link>
      <description>From a call I placed last year:&lt;BR /&gt;&lt;BR /&gt;there is a S.R. on that -- you can't remove it&lt;BR /&gt;VERITAS have recently released a 11.11 VxVM 3.5 patch&lt;BR /&gt;[PHCO_30850/PACHRDME/English] which installs a 29MB file at&lt;BR /&gt;"/etc/vx/static.d/build/vold.o". The huge vold.o is due to the inclusion&lt;BR /&gt;of debug symbols as a result of JAGaf37554. This object file is&lt;BR /&gt;necessary for recompiling a static vxconfigd binary (under&lt;BR /&gt;/etc/vx/type/static/vxconfigd) in case some VERITAS ASL (array support&lt;BR /&gt;library) is installed. The huge vold.o is due to the inclusion of debug&lt;BR /&gt;symbols as a result of JAGaf37554. The static vxconfigd recompiled using&lt;BR /&gt;this vold.o is also 29MB in size. That means the installation of&lt;BR /&gt;[PHCO_30850/PACHRDME/English] will request 29*2MB in the root&lt;BR /&gt;filesystem for customers having an ASL installed. That creates a lot of&lt;BR /&gt;burden on the root filesystem which is currently defaulted at &amp;lt;300MB.&lt;BR /&gt;&lt;BR /&gt;It is known that pxdb can optimize the debug information in the&lt;BR /&gt;recompiled static vxconfigd to reduce its size to 5MB. For systems&lt;BR /&gt;having the compiler bundle installed, ld will find pxdb under the&lt;BR /&gt;default path /opt/langtools/bin/pxdb and will run pxdb automatically on&lt;BR /&gt;the executable. But the intermediate program would still be 29Mb before&lt;BR /&gt;it was pxdbed.&lt;BR /&gt;Although [PHCO_30850/PACHRDME/English] is a 11.11 patch, VERITAS will&lt;BR /&gt;be including the debug symbols in vold.o for VxVM patches on 11.23 and&lt;BR /&gt;later VxVM releases, thus this request to increase the default root&lt;BR /&gt;filesystem size on 11.23 and onwards. VERITAS also wants to increase the&lt;BR /&gt;default size of the stand filesystem at the same time as both root and&lt;BR /&gt;stand filesystems cannot be easily extended.&lt;BR /&gt;CR# JAGaf51230 problem This enhancement request is asking for the&lt;BR /&gt;default sizes for the root filesystem and /stand to be changed and also&lt;BR /&gt;(optionally) to allow /etc/vx/static.d/build to be a mounted filesystem.&lt;BR /&gt;&lt;BR /&gt;Rgds...Geoff&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Fri, 05 May 2006 16:25:32 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/vx-patch-install-using-too-much-space-in/m-p/4977518#M419112</guid>
      <dc:creator>Geoff Wild</dc:creator>
      <dc:date>2006-05-05T16:25:32Z</dc:date>
    </item>
  </channel>
</rss>

