<?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: My root &amp;quot;/&amp;quot; FS is full in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/my-root-quot-quot-fs-is-full/m-p/2682342#M908950</link>
    <description>Have you looked all over for some large file sitting somewhere?  (An example might be an inordinately large /etc/rc.log)  &lt;BR /&gt;&lt;BR /&gt;Has your system been down in single user mode lately?  If that was the case, it may be possible that you stuck something under /opt and you do not see it...&lt;BR /&gt;&lt;BR /&gt;If you remove something like a large /etc/rc.log or other open file, the space will not free until after a reboot.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Good luck.&lt;BR /&gt;&lt;BR /&gt;John</description>
    <pubDate>Wed, 13 Mar 2002 16:28:17 GMT</pubDate>
    <dc:creator>John Payne_2</dc:creator>
    <dc:date>2002-03-13T16:28:17Z</dc:date>
    <item>
      <title>My root "/" FS is full</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/my-root-quot-quot-fs-is-full/m-p/2682341#M908949</link>
      <description>Hello to all&lt;BR /&gt;I have a problem with my root FS&lt;BR /&gt;When I am doing bdf I see the below&lt;BR /&gt;&lt;BR /&gt;Filesystem          kbytes    used   avail %used Mounted on&lt;BR /&gt;/dev/vg00/lvol3     262144  262144       0  100% /&lt;BR /&gt;/dev/vg00/lvol1     119637   34741   72932   32% /stand&lt;BR /&gt;/dev/vg00/lvol7    2621440 1553414 1012057   61% /var&lt;BR /&gt;/dev/vg00/lvol6    2097152  637578 1374403   32% /usr&lt;BR /&gt;/dev/vg00/lvol5    1048576  519132  496390   51% /tmp&lt;BR /&gt;/dev/vg00/lvol4    2097152 1308423  740880   64% /opt&lt;BR /&gt;/dev/vg00/lvol8      53248    6363   44592   12% /home&lt;BR /&gt;&lt;BR /&gt;The "/" is 100% full. I tried everything like lsof, du,df and I cannot find what is happening. This happened very suddenly.&lt;BR /&gt;&lt;BR /&gt;Can you please Help, It is vary urgent</description>
      <pubDate>Wed, 13 Mar 2002 16:22:27 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/my-root-quot-quot-fs-is-full/m-p/2682341#M908949</guid>
      <dc:creator>George Nikoloudis_1</dc:creator>
      <dc:date>2002-03-13T16:22:27Z</dc:date>
    </item>
    <item>
      <title>Re: My root "/" FS is full</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/my-root-quot-quot-fs-is-full/m-p/2682342#M908950</link>
      <description>Have you looked all over for some large file sitting somewhere?  (An example might be an inordinately large /etc/rc.log)  &lt;BR /&gt;&lt;BR /&gt;Has your system been down in single user mode lately?  If that was the case, it may be possible that you stuck something under /opt and you do not see it...&lt;BR /&gt;&lt;BR /&gt;If you remove something like a large /etc/rc.log or other open file, the space will not free until after a reboot.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Good luck.&lt;BR /&gt;&lt;BR /&gt;John</description>
      <pubDate>Wed, 13 Mar 2002 16:28:17 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/my-root-quot-quot-fs-is-full/m-p/2682342#M908950</guid>
      <dc:creator>John Payne_2</dc:creator>
      <dc:date>2002-03-13T16:28:17Z</dc:date>
    </item>
    <item>
      <title>Re: My root "/" FS is full</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/my-root-quot-quot-fs-is-full/m-p/2682343#M908951</link>
      <description>Hi George,&lt;BR /&gt;&lt;BR /&gt;Look in /dev/rmt, someone may have written to a file om instead of 0m.&lt;BR /&gt;&lt;BR /&gt;Also try:&lt;BR /&gt;&lt;BR /&gt;find / -xdev -mtime 0 -size +100000c -type f | xargs ls -ld&lt;BR /&gt;&lt;BR /&gt;if you can run it of course, and see what's been modified today, and is greater than 100k bytes.&lt;BR /&gt;&lt;BR /&gt;Rgds, Robin</description>
      <pubDate>Wed, 13 Mar 2002 16:29:05 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/my-root-quot-quot-fs-is-full/m-p/2682343#M908951</guid>
      <dc:creator>Robin Wakefield</dc:creator>
      <dc:date>2002-03-13T16:29:05Z</dc:date>
    </item>
    <item>
      <title>Re: My root "/" FS is full</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/my-root-quot-quot-fs-is-full/m-p/2682344#M908952</link>
      <description>Hi George,&lt;BR /&gt;&lt;BR /&gt;Try these commands:&lt;BR /&gt;&lt;BR /&gt;# find / -xdev -type f -mtime -1 -exec ll {} \; &amp;gt; /tmp/newfiles&lt;BR /&gt;&lt;BR /&gt;This will list you the newly created files ( 1 day ) in the system. As you have all other FS mounted under /, the search will list you all new files and may take some time to finish.&lt;BR /&gt;&lt;BR /&gt;# find / -xdev -size +10000 -exec ll {} \; &amp;gt; /tmp/bigfiles&lt;BR /&gt;&lt;BR /&gt;will give you a list of all big files ( &amp;gt;10000) under root.&lt;BR /&gt;&lt;BR /&gt;Check the syslog file for any error messages.&lt;BR /&gt;&lt;BR /&gt;HTH,&lt;BR /&gt;Shiju</description>
      <pubDate>Wed, 13 Mar 2002 16:29:09 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/my-root-quot-quot-fs-is-full/m-p/2682344#M908952</guid>
      <dc:creator>Helen French</dc:creator>
      <dc:date>2002-03-13T16:29:09Z</dc:date>
    </item>
    <item>
      <title>Re: My root "/" FS is full</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/my-root-quot-quot-fs-is-full/m-p/2682345#M908953</link>
      <description>First of all , if you are having rot prompt from any window go to /dev/rmt directory&lt;BR /&gt;There you should find some big files. remove that.&lt;BR /&gt;&lt;BR /&gt;then go to /etc /sbin /dev /bin directories and give du -sk *. It will give you the filesize in MB. Look for any big file which is not required and delete it.&lt;BR /&gt;&lt;BR /&gt;Try to run cleanup -F&lt;BR /&gt;&lt;BR /&gt;Sandip&lt;BR /&gt;</description>
      <pubDate>Wed, 13 Mar 2002 16:29:40 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/my-root-quot-quot-fs-is-full/m-p/2682345#M908953</guid>
      <dc:creator>Sandip Ghosh</dc:creator>
      <dc:date>2002-03-13T16:29:40Z</dc:date>
    </item>
    <item>
      <title>Re: My root "/" FS is full</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/my-root-quot-quot-fs-is-full/m-p/2682346#M908954</link>
      <description>Common errors are in /etc/&lt;BR /&gt;&lt;BR /&gt;you do a dd if=disk of=tape&lt;BR /&gt;but not the right device file, thus a file is created the size of disk...! until / fills/.&lt;BR /&gt;&lt;BR /&gt;Check /dev/ using ll&lt;BR /&gt;&lt;BR /&gt;Later,&lt;BR /&gt;Bill</description>
      <pubDate>Wed, 13 Mar 2002 16:30:16 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/my-root-quot-quot-fs-is-full/m-p/2682346#M908954</guid>
      <dc:creator>Bill McNAMARA_1</dc:creator>
      <dc:date>2002-03-13T16:30:16Z</dc:date>
    </item>
    <item>
      <title>Re: My root "/" FS is full</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/my-root-quot-quot-fs-is-full/m-p/2682347#M908955</link>
      <description>the best thing to do is a du -k and look for large directories and then narrow your search. The very first place to look is in /dev. There sould be no large files (or for that matter no regular files at all). It is very easy to do a tar cvf /dev/rmt/Om (the letter 'O') rather than /dev/rmt/0m (zero).&lt;BR /&gt;&lt;BR /&gt;The root filesystem should grow hardly at all after system setup. &lt;BR /&gt;&lt;BR /&gt;You should also look for large core files.&lt;BR /&gt;</description>
      <pubDate>Wed, 13 Mar 2002 16:30:59 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/my-root-quot-quot-fs-is-full/m-p/2682347#M908955</guid>
      <dc:creator>A. Clay Stephenson</dc:creator>
      <dc:date>2002-03-13T16:30:59Z</dc:date>
    </item>
    <item>
      <title>Re: My root "/" FS is full</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/my-root-quot-quot-fs-is-full/m-p/2682348#M908956</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;first of all you should try to find the files/directories which cause the full filesystem:&lt;BR /&gt;cd /path/to_directories_where_you_changed_thing&lt;BR /&gt;&lt;BR /&gt;find . -size 1000 -exec ll {} \;&lt;BR /&gt;&lt;BR /&gt;perhaps you can cleanup your root filesystem by deleting unnecessary things...&lt;BR /&gt;&lt;BR /&gt;Allways stay on the bright side of life!&lt;BR /&gt;&lt;BR /&gt;Peter</description>
      <pubDate>Wed, 13 Mar 2002 16:32:09 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/my-root-quot-quot-fs-is-full/m-p/2682348#M908956</guid>
      <dc:creator>Peter Kloetgen</dc:creator>
      <dc:date>2002-03-13T16:32:09Z</dc:date>
    </item>
    <item>
      <title>Re: My root "/" FS is full</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/my-root-quot-quot-fs-is-full/m-p/2682349#M908957</link>
      <description>Hi George,&lt;BR /&gt;&lt;BR /&gt;Simplest thing is to do du-k and will give you disk usage by files there you can figure it out which directory/file is occupying more space.&lt;BR /&gt;&lt;BR /&gt;LAter delete those identified files.&lt;BR /&gt;&lt;BR /&gt;Thanks,&lt;BR /&gt;&lt;BR /&gt;-Piyush.&lt;BR /&gt;</description>
      <pubDate>Wed, 13 Mar 2002 16:37:47 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/my-root-quot-quot-fs-is-full/m-p/2682349#M908957</guid>
      <dc:creator>pap</dc:creator>
      <dc:date>2002-03-13T16:37:47Z</dc:date>
    </item>
    <item>
      <title>Re: My root "/" FS is full</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/my-root-quot-quot-fs-is-full/m-p/2682350#M908958</link>
      <description>Hi George,&lt;BR /&gt;&lt;BR /&gt;Probably someone was trying to take a backup and misspelled the device file name. Look for any files in /dev directory.&lt;BR /&gt;&lt;BR /&gt;if your deivce is /dev/rmt/0m and you misspell it as /dev/rmt0m it will create a file rmt0m in /dev directory and woll start backing up to this file.&lt;BR /&gt;&lt;BR /&gt;Hope this helps.&lt;BR /&gt;&lt;BR /&gt;Regds&lt;BR /&gt;</description>
      <pubDate>Wed, 13 Mar 2002 16:38:35 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/my-root-quot-quot-fs-is-full/m-p/2682350#M908958</guid>
      <dc:creator>Sanjay_6</dc:creator>
      <dc:date>2002-03-13T16:38:35Z</dc:date>
    </item>
    <item>
      <title>Re: My root "/" FS is full</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/my-root-quot-quot-fs-is-full/m-p/2682351#M908959</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;Maybe some memorydump:&lt;BR /&gt;find / -name core&lt;BR /&gt;or&lt;BR /&gt;find / -name core -exec rm {} \;&lt;BR /&gt;&lt;BR /&gt;succes,&lt;BR /&gt;Ceesjan</description>
      <pubDate>Wed, 13 Mar 2002 16:41:24 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/my-root-quot-quot-fs-is-full/m-p/2682351#M908959</guid>
      <dc:creator>Ceesjan van Hattum</dc:creator>
      <dc:date>2002-03-13T16:41:24Z</dc:date>
    </item>
    <item>
      <title>Re: My root "/" FS is full</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/my-root-quot-quot-fs-is-full/m-p/2682352#M908960</link>
      <description>Hey George,&lt;BR /&gt;&lt;BR /&gt;check this link out: &lt;BR /&gt;&lt;A href="http://forums.itrc.hp.com/cm/QuestionAnswer/1,,0x316efd3f91d3d5118ff40090279cd0f9,00.html" target="_blank"&gt;http://forums.itrc.hp.com/cm/QuestionAnswer/1,,0x316efd3f91d3d5118ff40090279cd0f9,00.html&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;!&lt;BR /&gt;&lt;BR /&gt;Later,&lt;BR /&gt;Bill</description>
      <pubDate>Wed, 13 Mar 2002 16:55:48 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/my-root-quot-quot-fs-is-full/m-p/2682352#M908960</guid>
      <dc:creator>Bill McNAMARA_1</dc:creator>
      <dc:date>2002-03-13T16:55:48Z</dc:date>
    </item>
  </channel>
</rss>

