<?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: when /tmp full ...... in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/when-tmp-full/m-p/3241794#M891173</link>
    <description>"Here" documents, (i.e. anything of the form &amp;lt;&amp;lt;[-]word) allocate space from /tmp in the form of files (like 99.sh or 338.sh, etc.)&lt;BR /&gt;&lt;BR /&gt;The manpage for ksh describes their usage.&lt;BR /&gt;&lt;BR /&gt;</description>
    <pubDate>Wed, 07 Apr 2004 11:20:44 GMT</pubDate>
    <dc:creator>James A. Donovan</dc:creator>
    <dc:date>2004-04-07T11:20:44Z</dc:date>
    <item>
      <title>when /tmp full ......</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/when-tmp-full/m-p/3241790#M891169</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;Can some please explain to me why the following script behave differently when /tmp is full&lt;BR /&gt;&lt;BR /&gt;Script 1:&lt;BR /&gt;#!/bin/ksh&lt;BR /&gt;&lt;BR /&gt;sqlplus -s / @test.sql&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Script 2:&lt;BR /&gt;#!/bin/ksh&lt;BR /&gt;&lt;BR /&gt;sqlplus -s /nolog &amp;lt;&lt;EOF&gt;&lt;/EOF&gt;connect /&lt;BR /&gt;@test.sql&lt;BR /&gt;exit;&lt;BR /&gt;Eof&lt;BR /&gt;&lt;BR /&gt;Script1 run successfully but the script2 terminated with the following message:&lt;BR /&gt;msgcnt 152 vxfs: mesg 001: vx_nospace - /dev/vg00/lvol4 file system full (1 blo)&lt;BR /&gt;&lt;BR /&gt;Why Script2 to need /tmp and script1 doesn't?&lt;BR /&gt;&lt;BR /&gt;Thanks in advance.&lt;BR /&gt;ridzuan</description>
      <pubDate>Tue, 06 Apr 2004 20:00:46 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/when-tmp-full/m-p/3241790#M891169</guid>
      <dc:creator>Ridzuan Zakaria</dc:creator>
      <dc:date>2004-04-06T20:00:46Z</dc:date>
    </item>
    <item>
      <title>Re: when /tmp full ......</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/when-tmp-full/m-p/3241791#M891170</link>
      <description>Some time scripts need to create temporary files during processing /tmp needs to have sufficient space. Not only scripts bu compress or swinstall sometime need space in /tmp but you would not find these files because the programe deletes them once the job is finished.</description>
      <pubDate>Tue, 06 Apr 2004 20:11:10 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/when-tmp-full/m-p/3241791#M891170</guid>
      <dc:creator>SS_6</dc:creator>
      <dc:date>2004-04-06T20:11:10Z</dc:date>
    </item>
    <item>
      <title>Re: when /tmp full ......</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/when-tmp-full/m-p/3241792#M891171</link>
      <description>Hi Ridzuan,&lt;BR /&gt;&lt;BR /&gt;Becaused it's coded poorly.&lt;BR /&gt;/tmp is the OS domain, /var/tmp is for apps.&lt;BR /&gt;Anything other than the OS using /tmp is out of bounds.&lt;BR /&gt;Check your scripts &amp;amp; TMP / TMPDIR - they should be /var/tmp - *not* /tmp.&lt;BR /&gt;&lt;BR /&gt;My 2 cents,&lt;BR /&gt;Jeff</description>
      <pubDate>Tue, 06 Apr 2004 20:38:21 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/when-tmp-full/m-p/3241792#M891171</guid>
      <dc:creator>Jeff Schussele</dc:creator>
      <dc:date>2004-04-06T20:38:21Z</dc:date>
    </item>
    <item>
      <title>Re: when /tmp full ......</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/when-tmp-full/m-p/3241793#M891172</link>
      <description>Hi Jeff,&lt;BR /&gt;&lt;BR /&gt;That why I puzzled me, my TMP and TMPDIR point to /local/lfs2/tmp. Only when I use script2 syntax it trying to access /tmp.&lt;BR /&gt;&lt;BR /&gt;Is &amp;lt;&lt;EOF will="" try="" to="" use=""&gt;&lt;/EOF&gt;&lt;BR /&gt;Any ideas?&lt;BR /&gt;&lt;BR /&gt;Thanks.</description>
      <pubDate>Wed, 07 Apr 2004 11:14:44 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/when-tmp-full/m-p/3241793#M891172</guid>
      <dc:creator>Ridzuan Zakaria</dc:creator>
      <dc:date>2004-04-07T11:14:44Z</dc:date>
    </item>
    <item>
      <title>Re: when /tmp full ......</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/when-tmp-full/m-p/3241794#M891173</link>
      <description>"Here" documents, (i.e. anything of the form &amp;lt;&amp;lt;[-]word) allocate space from /tmp in the form of files (like 99.sh or 338.sh, etc.)&lt;BR /&gt;&lt;BR /&gt;The manpage for ksh describes their usage.&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Wed, 07 Apr 2004 11:20:44 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/when-tmp-full/m-p/3241794#M891173</guid>
      <dc:creator>James A. Donovan</dc:creator>
      <dc:date>2004-04-07T11:20:44Z</dc:date>
    </item>
  </channel>
</rss>

