<?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: dmesg output in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/dmesg-output/m-p/2783003#M77708</link>
    <description>Perhgaps there are any corruption in file system&lt;BR /&gt;&lt;BR /&gt;run the fsck command (previous umount) to fix any possible error</description>
    <pubDate>Fri, 09 Aug 2002 10:31:19 GMT</pubDate>
    <dc:creator>Joaquin Gil de Vergara</dc:creator>
    <dc:date>2002-08-09T10:31:19Z</dc:date>
    <item>
      <title>dmesg output</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/dmesg-output/m-p/2782999#M77704</link>
      <description>Hi &lt;BR /&gt;&lt;BR /&gt;I am getting the following output from dmesg - &lt;BR /&gt;&lt;BR /&gt;vxfs: mesg 001: vx_nospace - /dev/vg00/lvol8 file system full (1 block extent)&lt;BR /&gt;&lt;BR /&gt;/dev/vg00/lvol8 is /var and if I do a bdf it shows as 14% used. &lt;BR /&gt;&lt;BR /&gt;/dev/vg00/lvol8     716800   96569  595023   14% /var&lt;BR /&gt;&lt;BR /&gt;Please could someone explain why these messages occur and if I should be unduly concerned. &lt;BR /&gt;&lt;BR /&gt;Many thanks &lt;BR /&gt;&lt;BR /&gt;Keely &lt;BR /&gt;</description>
      <pubDate>Fri, 09 Aug 2002 09:36:55 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/dmesg-output/m-p/2782999#M77704</guid>
      <dc:creator>Keely Jackson</dc:creator>
      <dc:date>2002-08-09T09:36:55Z</dc:date>
    </item>
    <item>
      <title>Re: dmesg output</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/dmesg-output/m-p/2783000#M77705</link>
      <description>Just because you had an error which shows it was full at some point doesnt mean it is now. Check for full messages in /var/adm/syslog/syslog.log to get a time when this happened. &lt;BR /&gt;&lt;BR /&gt;Whenever a disk fills up you should be worried. But var and tmp are a little different as they are used for temporary files (/tmp and /var/tmp) so as long as they dont stay full I wouldnt be too worried - unless someone complains their job failed due to running out of space. You should definitely keep a closer eye on /var so that if its starting to fill up you can track who/what is doing it. &lt;BR /&gt;&lt;BR /&gt;You also need to be concious that some files can be left open which means bdf wont update and even ls -l wont show the true size of a file - but dmesg and syslog could report a filesystem full condition. In this case tracking down the open file which is causing it is difficult. You can do a search on these forums for "open files" to see how to track these down.&lt;BR /&gt;</description>
      <pubDate>Fri, 09 Aug 2002 09:52:07 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/dmesg-output/m-p/2783000#M77705</guid>
      <dc:creator>Stefan Farrelly</dc:creator>
      <dc:date>2002-08-09T09:52:07Z</dc:date>
    </item>
    <item>
      <title>Re: dmesg output</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/dmesg-output/m-p/2783001#M77706</link>
      <description>Use&lt;BR /&gt; fuser -cu &lt;BR /&gt;to find which processes have files open for /usr/&lt;BR /&gt;&lt;BR /&gt;perhaps a file was rm -f'd but still open by a process..&lt;BR /&gt;&lt;BR /&gt;Later,&lt;BR /&gt;Bill&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Fri, 09 Aug 2002 10:11:23 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/dmesg-output/m-p/2783001#M77706</guid>
      <dc:creator>Bill McNAMARA_1</dc:creator>
      <dc:date>2002-08-09T10:11:23Z</dc:date>
    </item>
    <item>
      <title>Re: dmesg output</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/dmesg-output/m-p/2783002#M77707</link>
      <description>Keely,&lt;BR /&gt;&lt;BR /&gt;the bdf command uses statfsdev(3C) to get the file system statistics. If some unlinked but still open files would exist then the occupied space would be included in that statistics... so it is usually not possible that open files occupy space while bdf is showing that space as free.&lt;BR /&gt;&lt;BR /&gt;Same for ls -l output. You see here the logical size of the file. The physical consumed space on disk can be only _less_ (in case of sparse files). So bdf cannot show too much free space here also.&lt;BR /&gt;&lt;BR /&gt;I think the theory that the file system WAS full and is NOW free, is the most realic. A simple failed copy job with cleanup on failure whould show you the symptom.&lt;BR /&gt;&lt;BR /&gt;You may simply check if the fs is full by trying to copy some stuff to it.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Regards...&lt;BR /&gt; Dietmar.</description>
      <pubDate>Fri, 09 Aug 2002 10:26:47 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/dmesg-output/m-p/2783002#M77707</guid>
      <dc:creator>Dietmar Konermann</dc:creator>
      <dc:date>2002-08-09T10:26:47Z</dc:date>
    </item>
    <item>
      <title>Re: dmesg output</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/dmesg-output/m-p/2783003#M77708</link>
      <description>Perhgaps there are any corruption in file system&lt;BR /&gt;&lt;BR /&gt;run the fsck command (previous umount) to fix any possible error</description>
      <pubDate>Fri, 09 Aug 2002 10:31:19 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/dmesg-output/m-p/2783003#M77708</guid>
      <dc:creator>Joaquin Gil de Vergara</dc:creator>
      <dc:date>2002-08-09T10:31:19Z</dc:date>
    </item>
    <item>
      <title>Re: dmesg output</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/dmesg-output/m-p/2783004#M77709</link>
      <description>xdmesg by itself does not provide a timestamp so this error may have occurred several days, maybe several weeks ago and the problem was fixed back then.&lt;BR /&gt;&lt;BR /&gt;To get a timestamp for dmesg, put this entry into root's crontab:&lt;BR /&gt;&lt;BR /&gt;0,10,20,30,40,50 * * * * /usr/sbin/dmesg - &amp;gt;&amp;gt; /var/adm/dmesg.log&lt;BR /&gt;&lt;BR /&gt;(be sure to put the - right after dmesg--this causes dmesg to append only new information) dmesg will also add a date for every new block of messages.&lt;BR /&gt;&lt;BR /&gt;Now you can check /var/adm/dmesg.log to see when a particular error occurred. Remember to trim this log (and the others in /var/adm) on a regular basis.</description>
      <pubDate>Fri, 09 Aug 2002 11:20:44 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/dmesg-output/m-p/2783004#M77709</guid>
      <dc:creator>Bill Hassell</dc:creator>
      <dc:date>2002-08-09T11:20:44Z</dc:date>
    </item>
    <item>
      <title>Re: dmesg output</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/dmesg-output/m-p/2783005#M77710</link>
      <description>Hi everyone &lt;BR /&gt;&lt;BR /&gt;I downloaded lsof and had a look at fuser as suggested but as I'm not really sure how to interpret the results it wasn't a lot of help. RTFM of the man pages required! &lt;BR /&gt;&lt;BR /&gt;The messages are output via a cron job, so they do have a time stamp. This particular machine doesn't do very much, it is used for the omniback cell manager, maestro and ITO. These messages have not come out again since so I can only assume I missed whatever was happening. I will jsut have to keep an eye on it. &lt;BR /&gt;&lt;BR /&gt;Thanks for your help. &lt;BR /&gt;&lt;BR /&gt;Cheers&lt;BR /&gt;Keely</description>
      <pubDate>Fri, 09 Aug 2002 12:25:23 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/dmesg-output/m-p/2783005#M77710</guid>
      <dc:creator>Keely Jackson</dc:creator>
      <dc:date>2002-08-09T12:25:23Z</dc:date>
    </item>
  </channel>
</rss>

