<?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: using link for space issues. in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/using-link-for-space-issues/m-p/4237214#M329481</link>
    <description>though /opt/tools is a part of /opt, but it has a seperate file system. if you install software in /opt/tools, then size of it will increase. otherway, if you install software in /opt, then only this file system will increase.&lt;BR /&gt;&lt;BR /&gt;software installation using swinstall, will analyze the disk space also. check in the commands or options provided by swinstall. swinstall will shows you the options, this a sam like tools.</description>
    <pubDate>Mon, 21 Jul 2008 02:12:44 GMT</pubDate>
    <dc:creator>Jeeshan</dc:creator>
    <dc:date>2008-07-21T02:12:44Z</dc:date>
    <item>
      <title>using link for space issues.</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/using-link-for-space-issues/m-p/4237212#M329479</link>
      <description>here is what is the bdf output.&lt;BR /&gt;/dev/vg00/lvol6    3072000 1918714 1084703   64% /opt&lt;BR /&gt;&lt;BR /&gt;/dev/vg00/lvol10   3584000  285320 3103089    8% /opt/tools&lt;BR /&gt;&lt;BR /&gt;/opt/tools is not used much but we have lots of space on that. we need to install a s/w on /opt and it requires about 1GB space. Can i install that s/w (so that it is accessible from /opt but the actual s/w shd reside in /opt/tools), i think this can be done by soft link. Can someone please help so that we could get rid of the space problem?&lt;BR /&gt;&lt;BR /&gt;Thanks&lt;BR /&gt;&lt;BR /&gt;Terry</description>
      <pubDate>Mon, 21 Jul 2008 01:01:52 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/using-link-for-space-issues/m-p/4237212#M329479</guid>
      <dc:creator>terrytapp</dc:creator>
      <dc:date>2008-07-21T01:01:52Z</dc:date>
    </item>
    <item>
      <title>Re: using link for space issues.</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/using-link-for-space-issues/m-p/4237213#M329480</link>
      <description>There is no issue in selcting the target location as /opt/tools. However I would recommend to increase the /opt and it can be done online if you have online JFS. By this way new sysadmin will not have any issues in locating the software installed.&lt;BR /&gt;&lt;BR /&gt;You can check the free PEs in /usr/sbin/vgdisplay vg00 output and then u can plan for lvextend. followed by fsadm command to increase the filesystem size.</description>
      <pubDate>Mon, 21 Jul 2008 02:12:33 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/using-link-for-space-issues/m-p/4237213#M329480</guid>
      <dc:creator>Mridul Shrivastava</dc:creator>
      <dc:date>2008-07-21T02:12:33Z</dc:date>
    </item>
    <item>
      <title>Re: using link for space issues.</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/using-link-for-space-issues/m-p/4237214#M329481</link>
      <description>though /opt/tools is a part of /opt, but it has a seperate file system. if you install software in /opt/tools, then size of it will increase. otherway, if you install software in /opt, then only this file system will increase.&lt;BR /&gt;&lt;BR /&gt;software installation using swinstall, will analyze the disk space also. check in the commands or options provided by swinstall. swinstall will shows you the options, this a sam like tools.</description>
      <pubDate>Mon, 21 Jul 2008 02:12:44 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/using-link-for-space-issues/m-p/4237214#M329481</guid>
      <dc:creator>Jeeshan</dc:creator>
      <dc:date>2008-07-21T02:12:44Z</dc:date>
    </item>
    <item>
      <title>Re: using link for space issues.</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/using-link-for-space-issues/m-p/4237215#M329482</link>
      <description>Yes, a softlink should work fine.  You'll need to create it before you install your software.&lt;BR /&gt;If the installation procedure removes the whole tree before starting, you may have to move the tree to /opt/tools and add a softlink after.</description>
      <pubDate>Mon, 21 Jul 2008 02:59:33 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/using-link-for-space-issues/m-p/4237215#M329482</guid>
      <dc:creator>Dennis Handly</dc:creator>
      <dc:date>2008-07-21T02:59:33Z</dc:date>
    </item>
    <item>
      <title>Re: using link for space issues.</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/using-link-for-space-issues/m-p/4237216#M329483</link>
      <description>vgdisplay vg00|grep "Free PE"&lt;BR /&gt;vgdisplay vg00|grep Size  &lt;BR /&gt;&lt;BR /&gt;Multiplying the results of Free PE with Size would give you the Free Space (MB) left in vg00. If it is reasonable size, then as Mridhul said, you can increase the /opt online if you have Online JFS installed. &lt;BR /&gt;&lt;BR /&gt;Otherwise, a soft link would do, if you want to get it from the /opt itself.&lt;BR /&gt;&lt;BR /&gt;cd /opt/tools&lt;BR /&gt;mkdir newapp  (give the correct dir name)&lt;BR /&gt;&lt;BR /&gt;ln -s /opt/tools/newapp /opt/newapp (here also give the correct dir name)&lt;BR /&gt;&lt;BR /&gt;cd /opt/newapp&lt;BR /&gt;bdf . (current file system will show /opt/tools)&lt;BR /&gt;&lt;BR /&gt;Regards.</description>
      <pubDate>Mon, 21 Jul 2008 08:28:36 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/using-link-for-space-issues/m-p/4237216#M329483</guid>
      <dc:creator>Rasheed Tamton</dc:creator>
      <dc:date>2008-07-21T08:28:36Z</dc:date>
    </item>
    <item>
      <title>Re: using link for space issues.</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/using-link-for-space-issues/m-p/4237217#M329484</link>
      <description>Thanks. no space in vg00 and no online JFS, hence the concern. &lt;BR /&gt;&lt;BR /&gt;Thanks&lt;BR /&gt;&lt;BR /&gt;Terry</description>
      <pubDate>Mon, 21 Jul 2008 12:27:50 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/using-link-for-space-issues/m-p/4237217#M329484</guid>
      <dc:creator>terrytapp</dc:creator>
      <dc:date>2008-07-21T12:27:50Z</dc:date>
    </item>
    <item>
      <title>Re: using link for space issues.</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/using-link-for-space-issues/m-p/4237218#M329485</link>
      <description>Possible ways:&lt;BR /&gt;&lt;BR /&gt;Use the softlink as above&lt;BR /&gt;&lt;BR /&gt;or&lt;BR /&gt;&lt;BR /&gt;one of this:&lt;BR /&gt;&lt;BR /&gt;Total size of lvol10 is 3.4GB&lt;BR /&gt;used 278MB&lt;BR /&gt;Free 3.4GB&lt;BR /&gt;&lt;BR /&gt;Depending on the contents on /opt/tools, either you can &lt;BR /&gt;remove the lvol10 and give all the space to /opt or &lt;BR /&gt;reduce the /opt/tools to 2GB and give the other 1.5 GB to /opt. Unmounting the file systems are required for this.&lt;BR /&gt;&lt;BR /&gt;What version of HP-UX you are using.&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;Rasheed Tamton.</description>
      <pubDate>Tue, 22 Jul 2008 07:05:09 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/using-link-for-space-issues/m-p/4237218#M329485</guid>
      <dc:creator>Rasheed Tamton</dc:creator>
      <dc:date>2008-07-22T07:05:09Z</dc:date>
    </item>
  </channel>
</rss>

