<?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 at or cron limitation ???? in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/at-or-cron-limitation/m-p/2805704#M82952</link>
    <description>I have tested this problem by writing this small script called test.sh&lt;BR /&gt;&lt;BR /&gt;#!/bin/ksh&lt;BR /&gt;cat jas* &amp;gt; big2&lt;BR /&gt;exit 0&lt;BR /&gt;&lt;BR /&gt;The listing of the jas files show that they are each 700 megs in size.&lt;BR /&gt;744408589 Sep 12 12:01 jas&lt;BR /&gt;744408589 Sep 12 12:02 jas1&lt;BR /&gt;744408589 Sep 12 12:03 jas2&lt;BR /&gt;744408589 Sep 12 12:04 jas3&lt;BR /&gt;&lt;BR /&gt;If I run the manually script it runs successfully and creates a file of 2.9 gigs as per listing below.&lt;BR /&gt;&lt;BR /&gt;2977634356 Sep 12 12:07 big2&lt;BR /&gt;&lt;BR /&gt;But if I run the script with &lt;BR /&gt;at -f test.sh&lt;BR /&gt;&lt;BR /&gt;it only creates a file of 2 gigs &lt;BR /&gt;2147483136 Sep 12 14:53 big2&lt;BR /&gt;&lt;BR /&gt;Any ideas out there ????? &lt;BR /&gt;</description>
    <pubDate>Fri, 13 Sep 2002 06:36:30 GMT</pubDate>
    <dc:creator>P. Prinsloo</dc:creator>
    <dc:date>2002-09-13T06:36:30Z</dc:date>
    <item>
      <title>at or cron limitation ????</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/at-or-cron-limitation/m-p/2805704#M82952</link>
      <description>I have tested this problem by writing this small script called test.sh&lt;BR /&gt;&lt;BR /&gt;#!/bin/ksh&lt;BR /&gt;cat jas* &amp;gt; big2&lt;BR /&gt;exit 0&lt;BR /&gt;&lt;BR /&gt;The listing of the jas files show that they are each 700 megs in size.&lt;BR /&gt;744408589 Sep 12 12:01 jas&lt;BR /&gt;744408589 Sep 12 12:02 jas1&lt;BR /&gt;744408589 Sep 12 12:03 jas2&lt;BR /&gt;744408589 Sep 12 12:04 jas3&lt;BR /&gt;&lt;BR /&gt;If I run the manually script it runs successfully and creates a file of 2.9 gigs as per listing below.&lt;BR /&gt;&lt;BR /&gt;2977634356 Sep 12 12:07 big2&lt;BR /&gt;&lt;BR /&gt;But if I run the script with &lt;BR /&gt;at -f test.sh&lt;BR /&gt;&lt;BR /&gt;it only creates a file of 2 gigs &lt;BR /&gt;2147483136 Sep 12 14:53 big2&lt;BR /&gt;&lt;BR /&gt;Any ideas out there ????? &lt;BR /&gt;</description>
      <pubDate>Fri, 13 Sep 2002 06:36:30 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/at-or-cron-limitation/m-p/2805704#M82952</guid>
      <dc:creator>P. Prinsloo</dc:creator>
      <dc:date>2002-09-13T06:36:30Z</dc:date>
    </item>
    <item>
      <title>Re: at or cron limitation ????</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/at-or-cron-limitation/m-p/2805705#M82953</link>
      <description>Try to log what is done.&lt;BR /&gt;&lt;BR /&gt;#!/bin/ksh&lt;BR /&gt;&lt;BR /&gt;for file in jas*&lt;BR /&gt;do&lt;BR /&gt;echo $file &amp;gt;&amp;gt;/tmp/filelog &lt;BR /&gt;cat $file &lt;BR /&gt;done &amp;gt;big2 2&amp;gt;/tmp/errorlog&lt;BR /&gt;</description>
      <pubDate>Fri, 13 Sep 2002 06:51:10 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/at-or-cron-limitation/m-p/2805705#M82953</guid>
      <dc:creator>Leif Halvarsson_2</dc:creator>
      <dc:date>2002-09-13T06:51:10Z</dc:date>
    </item>
    <item>
      <title>Re: at or cron limitation ????</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/at-or-cron-limitation/m-p/2805706#M82954</link>
      <description>I assume that the files are being created in the same location when you run the job manually as when it runs from cron.&lt;BR /&gt;&lt;BR /&gt;If not, it could be that the filesystem that the cron job is writing to doesn't have largefiles enabled.&lt;BR /&gt;&lt;BR /&gt;Check using&lt;BR /&gt;&lt;BR /&gt;mkfs -m /dev/vgXX/lvolYY&lt;BR /&gt;&lt;BR /&gt;This should give you something like&lt;BR /&gt;&lt;BR /&gt;mkfs -F vxfs -o ninode=unlimited,bsize=1024,version=3,inosize=256,logsize=1024,largefiles /dev/vg05/lvol11 4096000</description>
      <pubDate>Fri, 13 Sep 2002 06:57:32 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/at-or-cron-limitation/m-p/2805706#M82954</guid>
      <dc:creator>Chris Wilshaw</dc:creator>
      <dc:date>2002-09-13T06:57:32Z</dc:date>
    </item>
    <item>
      <title>Re: at or cron limitation ????</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/at-or-cron-limitation/m-p/2805707#M82955</link>
      <description>Firstly yes the directory is the same in both cases and the filesystem has been created with the largfiles option.&lt;BR /&gt;&lt;BR /&gt;I have created an error log&lt;BR /&gt;&lt;BR /&gt;this is the output. &lt;BR /&gt;&lt;BR /&gt;more /tmp/errorlog &lt;BR /&gt;&lt;BR /&gt;Error 0&lt;BR /&gt;cat: Cannot write to output.&lt;BR /&gt;File too large&lt;BR /&gt;cat: Cannot write to output.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Fri, 13 Sep 2002 07:17:07 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/at-or-cron-limitation/m-p/2805707#M82955</guid>
      <dc:creator>P. Prinsloo</dc:creator>
      <dc:date>2002-09-13T07:17:07Z</dc:date>
    </item>
    <item>
      <title>Re: at or cron limitation ????</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/at-or-cron-limitation/m-p/2805708#M82956</link>
      <description>Hi&lt;BR /&gt;Enabling largefiles will fix it.</description>
      <pubDate>Fri, 13 Sep 2002 07:42:01 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/at-or-cron-limitation/m-p/2805708#M82956</guid>
      <dc:creator>Leif Halvarsson_2</dc:creator>
      <dc:date>2002-09-13T07:42:01Z</dc:date>
    </item>
    <item>
      <title>Re: at or cron limitation ????</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/at-or-cron-limitation/m-p/2805709#M82957</link>
      <description>OK,&lt;BR /&gt;&lt;BR /&gt;Check out this link&lt;BR /&gt;&lt;A href="http://support4.itrc.hp.com/service/patch/patchDetail.do?patchid=PHCO_27141&amp;amp;context=hpux:800:11:00" target="_blank"&gt;http://support4.itrc.hp.com/service/patch/patchDetail.do?patchid=PHCO_27141&amp;amp;context=hpux:800:11:00&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;This patch has the fix you'll need.&lt;BR /&gt;</description>
      <pubDate>Fri, 13 Sep 2002 07:43:41 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/at-or-cron-limitation/m-p/2805709#M82957</guid>
      <dc:creator>Chris Wilshaw</dc:creator>
      <dc:date>2002-09-13T07:43:41Z</dc:date>
    </item>
    <item>
      <title>Re: at or cron limitation ????</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/at-or-cron-limitation/m-p/2805710#M82958</link>
      <description>Hello&lt;BR /&gt;&lt;BR /&gt;Chris is right. &lt;BR /&gt;I think the output from the errorlog says only, that /tmp hasn't enabled the largefile option and doesn't point to the original problem.&lt;BR /&gt;&lt;BR /&gt;regards&lt;BR /&gt;Dirk</description>
      <pubDate>Fri, 13 Sep 2002 07:55:37 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/at-or-cron-limitation/m-p/2805710#M82958</guid>
      <dc:creator>Dirk Wiedemann</dc:creator>
      <dc:date>2002-09-13T07:55:37Z</dc:date>
    </item>
    <item>
      <title>Re: at or cron limitation ????</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/at-or-cron-limitation/m-p/2805711#M82959</link>
      <description>thanks&lt;BR /&gt;&lt;BR /&gt;The patch resolved the problem..........</description>
      <pubDate>Mon, 16 Sep 2002 07:27:35 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/at-or-cron-limitation/m-p/2805711#M82959</guid>
      <dc:creator>P. Prinsloo</dc:creator>
      <dc:date>2002-09-16T07:27:35Z</dc:date>
    </item>
  </channel>
</rss>

