<?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: Extend/increase directory space in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/extend-increase-directory-space/m-p/2449668#M10508</link>
    <description>Hi:&lt;BR /&gt;&lt;BR /&gt;If you have online JFS (and the filesystem is a journaled [vxfs] one) then there is no impact whatsoever -- you can extend your file system "on-the-fly". &lt;BR /&gt;&lt;BR /&gt;If the filesystem is HFS or you do not have online JFS, then you will need to be able to unmount the filesystem before you can extend it.&lt;BR /&gt;&lt;BR /&gt;These procedures are described in the HP-UX System Administration Tasks manual:&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://docs.hp.com/hpux/onlinedocs/B2355-90672/B2355-90672.html" target="_blank"&gt;http://docs.hp.com/hpux/onlinedocs/B2355-90672/B2355-90672.html&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;...JRF...</description>
    <pubDate>Tue, 03 Oct 2000 08:51:38 GMT</pubDate>
    <dc:creator>James R. Ferguson</dc:creator>
    <dc:date>2000-10-03T08:51:38Z</dc:date>
    <item>
      <title>Extend/increase directory space</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/extend-increase-directory-space/m-p/2449665#M10505</link>
      <description>we r on unix 10.2 running an ERP package which one of the data directory is running out of disk space. The DB is using ingres.&lt;BR /&gt;can we use a link, 'ln' command, to path to another directory ?&lt;BR /&gt;dir w/o space : /dev/vg00/lvol9/mk&lt;BR /&gt;dir to path   : /dev/VG01/lvol10/ingres2&lt;BR /&gt;if yes, how do we do it?  must all users be logged out?  do we need to change any log-in script files subsequently?&lt;BR /&gt;if no, what other options?&lt;BR /&gt;pls advice, thx</description>
      <pubDate>Tue, 03 Oct 2000 02:42:45 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/extend-increase-directory-space/m-p/2449665#M10505</guid>
      <dc:creator>Goh Cheng Chuan</dc:creator>
      <dc:date>2000-10-03T02:42:45Z</dc:date>
    </item>
    <item>
      <title>Re: Extend/increase directory space</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/extend-increase-directory-space/m-p/2449666#M10506</link>
      <description>Sounds like a bit of a mess.  Are those the mount points that you have indicated?  If so, it seems a peculiar place to have them mounted.&lt;BR /&gt;&lt;BR /&gt;Anyway, without knowing anything about Ingres or your system, there are probably a few ways to approach it - all will most likely require an outage of any product with files open in the directories (fuser -cu &lt;MOUNTPOINT&gt; will tell you which processes have files open on that mountpoint).&lt;BR /&gt;&lt;BR /&gt;If it's only direcories we're playing with try:&lt;BR /&gt;&lt;BR /&gt;Shutdown anything accessing the area.&lt;BR /&gt;If you want to relocate the whole subdirectory, copy the contents to the new area eg:&lt;BR /&gt;cp -pR /dev/vg00/lvol9/mk /dev/VG01/lvol10/ingres2 &lt;BR /&gt;Move the old directory aside:&lt;BR /&gt;mv /dev/vg00/lvol9/mk /dev/vg00/lvol9/mk.old&lt;BR /&gt;Link the new directory to the old directory name:&lt;BR /&gt;ln -s /dev/VG01/lvol10/ingres2/mk /dev/vg00/lvol9/mk&lt;BR /&gt;&lt;BR /&gt;Test.&lt;BR /&gt;If it doesn't work, remove the link and move the old directory back.&lt;BR /&gt;&lt;BR /&gt;I'd suggest that you take a look at filesystem sizes and perhaps replan your distribution, mountpoints etc.  Temporarily moving bits around a system and chasing links can get very messy, very quickly and can have severe impacts on I/O.  &lt;BR /&gt;&lt;BR /&gt;PS.  make sure you update your backup routines as they will most probably not follow the new links.&lt;BR /&gt;&lt;BR /&gt;Cheers,&lt;BR /&gt;&lt;BR /&gt;Murray&lt;BR /&gt;&lt;/MOUNTPOINT&gt;</description>
      <pubDate>Tue, 03 Oct 2000 03:16:58 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/extend-increase-directory-space/m-p/2449666#M10506</guid>
      <dc:creator>Murray Jones</dc:creator>
      <dc:date>2000-10-03T03:16:58Z</dc:date>
    </item>
    <item>
      <title>Re: Extend/increase directory space</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/extend-increase-directory-space/m-p/2449667#M10507</link>
      <description>dir w/o space : /dev/vg00/lvol9/mk &lt;BR /&gt;dir to path : /dev/VG01/lvol10/ingres2 &lt;BR /&gt;&lt;BR /&gt;move/copy  all the files from the current directory where you do not have soace to where you have space.&lt;BR /&gt;&lt;BR /&gt;mv /dev/vg00/lvol9/mk /dev/VG01/lvol10/ingres2&lt;BR /&gt;ln -s /dev/VG01/lvol10/ingres2/mk /dev/vg00/lvol9/mk&lt;BR /&gt;&lt;BR /&gt;this will create a link in /dev/vg00/lvol10 with file name mk to /dev/VG01/lvol10/ingres2/mk. so when you refer to vg00 directory it will point you to VG01 directory. no need to change any user files OR profiles</description>
      <pubDate>Tue, 03 Oct 2000 05:05:34 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/extend-increase-directory-space/m-p/2449667#M10507</guid>
      <dc:creator>Manju Kampli</dc:creator>
      <dc:date>2000-10-03T05:05:34Z</dc:date>
    </item>
    <item>
      <title>Re: Extend/increase directory space</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/extend-increase-directory-space/m-p/2449668#M10508</link>
      <description>Hi:&lt;BR /&gt;&lt;BR /&gt;If you have online JFS (and the filesystem is a journaled [vxfs] one) then there is no impact whatsoever -- you can extend your file system "on-the-fly". &lt;BR /&gt;&lt;BR /&gt;If the filesystem is HFS or you do not have online JFS, then you will need to be able to unmount the filesystem before you can extend it.&lt;BR /&gt;&lt;BR /&gt;These procedures are described in the HP-UX System Administration Tasks manual:&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://docs.hp.com/hpux/onlinedocs/B2355-90672/B2355-90672.html" target="_blank"&gt;http://docs.hp.com/hpux/onlinedocs/B2355-90672/B2355-90672.html&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;...JRF...</description>
      <pubDate>Tue, 03 Oct 2000 08:51:38 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/extend-increase-directory-space/m-p/2449668#M10508</guid>
      <dc:creator>James R. Ferguson</dc:creator>
      <dc:date>2000-10-03T08:51:38Z</dc:date>
    </item>
  </channel>
</rss>

