<?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: /home file system is full in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/home-file-system-is-full/m-p/4883060#M400910</link>
    <description>/home is usually small as it doesn't contain much. Are you sure there's nothing there surplus to requirements?&lt;BR /&gt;&lt;BR /&gt;Mark Syder (like the drink but spelt different)</description>
    <pubDate>Mon, 31 Jan 2005 09:41:50 GMT</pubDate>
    <dc:creator>MarkSyder</dc:creator>
    <dc:date>2005-01-31T09:41:50Z</dc:date>
    <item>
      <title>/home file system is full</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/home-file-system-is-full/m-p/4883059#M400909</link>
      <description>How can I extend this system file /home.</description>
      <pubDate>Mon, 31 Jan 2005 09:39:39 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/home-file-system-is-full/m-p/4883059#M400909</guid>
      <dc:creator>Taulant Shamo</dc:creator>
      <dc:date>2005-01-31T09:39:39Z</dc:date>
    </item>
    <item>
      <title>Re: /home file system is full</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/home-file-system-is-full/m-p/4883060#M400910</link>
      <description>/home is usually small as it doesn't contain much. Are you sure there's nothing there surplus to requirements?&lt;BR /&gt;&lt;BR /&gt;Mark Syder (like the drink but spelt different)</description>
      <pubDate>Mon, 31 Jan 2005 09:41:50 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/home-file-system-is-full/m-p/4883060#M400910</guid>
      <dc:creator>MarkSyder</dc:creator>
      <dc:date>2005-01-31T09:41:50Z</dc:date>
    </item>
    <item>
      <title>Re: /home file system is full</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/home-file-system-is-full/m-p/4883061#M400911</link>
      <description>Probably the easiest way to enlarge it is to use SAM.  Otherwise, you'll need to lvextend the logical volume and then extendfs the file system - after you unmount it, of course.&lt;BR /&gt;&lt;BR /&gt;Or, if you have Online JFS, you can extend it on the fly - without unmounting.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Pete</description>
      <pubDate>Mon, 31 Jan 2005 09:44:12 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/home-file-system-is-full/m-p/4883061#M400911</guid>
      <dc:creator>Pete Randall</dc:creator>
      <dc:date>2005-01-31T09:44:12Z</dc:date>
    </item>
    <item>
      <title>Re: /home file system is full</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/home-file-system-is-full/m-p/4883062#M400912</link>
      <description>Does anyone of you have any procedure to follow?</description>
      <pubDate>Mon, 31 Jan 2005 09:45:49 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/home-file-system-is-full/m-p/4883062#M400912</guid>
      <dc:creator>Taulant Shamo</dc:creator>
      <dc:date>2005-01-31T09:45:49Z</dc:date>
    </item>
    <item>
      <title>Re: /home file system is full</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/home-file-system-is-full/m-p/4883063#M400913</link>
      <description>Do a man on extendfs and look at the EXAMPLES section.  The procedure is spelled out quite clearly.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Pete</description>
      <pubDate>Mon, 31 Jan 2005 09:50:25 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/home-file-system-is-full/m-p/4883063#M400913</guid>
      <dc:creator>Pete Randall</dc:creator>
      <dc:date>2005-01-31T09:50:25Z</dc:date>
    </item>
    <item>
      <title>Re: /home file system is full</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/home-file-system-is-full/m-p/4883064#M400914</link>
      <description>hi,&lt;BR /&gt;&lt;BR /&gt;use the following command to find files which is more than 1MB size.check it and delete if not required.&lt;BR /&gt;&lt;BR /&gt;find /home -size +1000000c -exec ll {} \;&lt;BR /&gt;&lt;BR /&gt;for extending the /home&lt;BR /&gt;&lt;BR /&gt;check any user is accessing the /home&lt;BR /&gt;&lt;BR /&gt;fuser -cu /home&lt;BR /&gt;&lt;BR /&gt;if yes,exit that user and use the following command to remove the access of users/daemons &lt;BR /&gt;with home directory.&lt;BR /&gt;&lt;BR /&gt;fuser -ku /dev/vg00/lvolXX&lt;BR /&gt;&lt;BR /&gt;(replace lvolXX with the lvol of your /home)&lt;BR /&gt;&lt;BR /&gt;make sure that your /home is vxfs filesystem&lt;BR /&gt;&lt;BR /&gt;fstyp /dev/vg00/lvolXX&lt;BR /&gt;&lt;BR /&gt;unmount the /home mount&lt;BR /&gt;&lt;BR /&gt;umount /home&lt;BR /&gt;lvextend -L &lt;NEW size="" in="" mb=""&gt; /dev/vg00/lvolXX&lt;BR /&gt;extendfs -F vxfs /dev/vg00/rlvolXX&lt;BR /&gt;&lt;BR /&gt;mount -a&lt;BR /&gt;&lt;BR /&gt;regds,&lt;BR /&gt; &lt;BR /&gt;&lt;/NEW&gt;</description>
      <pubDate>Mon, 31 Jan 2005 09:51:12 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/home-file-system-is-full/m-p/4883064#M400914</guid>
      <dc:creator>bhavin asokan</dc:creator>
      <dc:date>2005-01-31T09:51:12Z</dc:date>
    </item>
    <item>
      <title>Re: /home file system is full</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/home-file-system-is-full/m-p/4883065#M400915</link>
      <description>Thank you all especially Bhavin Asokan &lt;BR /&gt;&lt;BR /&gt;Another question related with this is:&lt;BR /&gt;I have a spare disk, but how can I connect is and use it for other files systems if is needed.&lt;BR /&gt;&lt;BR /&gt;Taulant</description>
      <pubDate>Mon, 31 Jan 2005 10:12:13 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/home-file-system-is-full/m-p/4883065#M400915</guid>
      <dc:creator>Taulant Shamo</dc:creator>
      <dc:date>2005-01-31T10:12:13Z</dc:date>
    </item>
    <item>
      <title>Re: /home file system is full</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/home-file-system-is-full/m-p/4883066#M400916</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;first - it depends on your hardware. Can you tell us more? hw? OS?&lt;BR /&gt;&lt;BR /&gt;Normally you can connect it to the (right) bus without problems.&lt;BR /&gt;&lt;BR /&gt;Then you can search in SAM for the new disc and create a new directory.&lt;BR /&gt;&lt;BR /&gt;Volkmar</description>
      <pubDate>Mon, 31 Jan 2005 11:16:46 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/home-file-system-is-full/m-p/4883066#M400916</guid>
      <dc:creator>V. Nyga</dc:creator>
      <dc:date>2005-01-31T11:16:46Z</dc:date>
    </item>
    <item>
      <title>Re: /home file system is full</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/home-file-system-is-full/m-p/4883067#M400917</link>
      <description>Lets say new one disk to connect to the disk and about SCSI id ? I have to reboot sytem to let system know the new device ? the format is needed. May bee these are stubit questions :)</description>
      <pubDate>Mon, 31 Jan 2005 11:22:12 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/home-file-system-is-full/m-p/4883067#M400917</guid>
      <dc:creator>Taulant Shamo</dc:creator>
      <dc:date>2005-01-31T11:22:12Z</dc:date>
    </item>
    <item>
      <title>Re: /home file system is full</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/home-file-system-is-full/m-p/4883068#M400918</link>
      <description>Hi again,&lt;BR /&gt;&lt;BR /&gt;can you tell us which hardware and which software/os do you have?&lt;BR /&gt;Do you have external discs? Or internal?&lt;BR /&gt;&lt;BR /&gt;V.</description>
      <pubDate>Mon, 31 Jan 2005 11:27:18 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/home-file-system-is-full/m-p/4883068#M400918</guid>
      <dc:creator>V. Nyga</dc:creator>
      <dc:date>2005-01-31T11:27:18Z</dc:date>
    </item>
    <item>
      <title>Re: /home file system is full</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/home-file-system-is-full/m-p/4883069#M400919</link>
      <description>External disks and HP-UX 11i</description>
      <pubDate>Mon, 31 Jan 2005 11:29:12 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/home-file-system-is-full/m-p/4883069#M400919</guid>
      <dc:creator>Taulant Shamo</dc:creator>
      <dc:date>2005-01-31T11:29:12Z</dc:date>
    </item>
    <item>
      <title>Re: /home file system is full</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/home-file-system-is-full/m-p/4883070#M400920</link>
      <description>If you can shutdown the system, then it's the best.&lt;BR /&gt;&lt;BR /&gt;With 'ioscan -fn' you get a list with all hardware - there you can see which SCSI id is already used.&lt;BR /&gt;&lt;BR /&gt;You have to set the SCSI id of the new disc to an unused id. Then shutdown ws and connect disc to the choosen SCSI interface.&lt;BR /&gt;&lt;BR /&gt;After startup and starting SAM you should see it as an unused disc.&lt;BR /&gt;&lt;BR /&gt;Volkmar</description>
      <pubDate>Mon, 31 Jan 2005 12:13:53 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/home-file-system-is-full/m-p/4883070#M400920</guid>
      <dc:creator>V. Nyga</dc:creator>
      <dc:date>2005-01-31T12:13:53Z</dc:date>
    </item>
    <item>
      <title>Re: /home file system is full</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/home-file-system-is-full/m-p/4883071#M400921</link>
      <description>Thanks a lot</description>
      <pubDate>Mon, 31 Jan 2005 12:15:48 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/home-file-system-is-full/m-p/4883071#M400921</guid>
      <dc:creator>Taulant Shamo</dc:creator>
      <dc:date>2005-01-31T12:15:48Z</dc:date>
    </item>
  </channel>
</rss>

