<?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: GNU tar: memory fault, with coredump in Operating System - Linux</title>
    <link>https://community.hpe.com/t5/operating-system-linux/gnu-tar-memory-fault-with-coredump/m-p/4069091#M94716</link>
    <description>I assume I'd need the Ansi C compiler to do that, right?  I've never had any luck compiling anything in HP-UX without it, and I don't have it on this box, nor any depot or anything I could get it from.&lt;BR /&gt;&lt;BR /&gt;Right now I am dd-ing the file (you're right, I just had to figure out what the block size was; luckily it was the default).  I'm hoping maybe that gnu tar will be able to use the --delete option to get rid of the faulty file without dying, but if not I may try an older version and see if it has difficulties as well.</description>
    <pubDate>Tue, 11 Sep 2007 20:40:57 GMT</pubDate>
    <dc:creator>Matt Hearn</dc:creator>
    <dc:date>2007-09-11T20:40:57Z</dc:date>
    <item>
      <title>GNU tar: memory fault, with coredump</title>
      <link>https://community.hpe.com/t5/operating-system-linux/gnu-tar-memory-fault-with-coredump/m-p/4069089#M94714</link>
      <description>&lt;P&gt;Hey all! I'm trying to read some tar tapes made on a Tru64 system, so that I can restore the files to an HP-UX 11.11 system. I'm aware of the 2GB limitation on the native HP tar, so I've installed the GNU one, version 1.15.1.&lt;BR /&gt;&lt;BR /&gt;Unfortunately, the GNU version seems to hiccup and issue a memory fault(coredump). It SEEMS like it's failing at a specific file, one that for whatever reason has an owner number of -1 and a group number of -2. The native tar is able to restore it, just sticking it as owned by root:sys, but GNUtar can't seem to do it.&lt;BR /&gt;&lt;BR /&gt;I tried using the --user and --group tags, but it still dies a painful and horrific death.&lt;BR /&gt;&lt;BR /&gt;I'm considering trying to see if I can just dd the entire tape into an on-disk tarball, but I'm concerned that if I don't know the size I'll end up with a tarball with a lot of empty space at the end that may or may not actually untar.&lt;BR /&gt;&lt;BR /&gt;Any ideas? Thanks!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;P.S. this thread has been moved from HP-UX &amp;gt; System Administration to HP-UX &amp;gt; languages - HP Forums Moderator&lt;/P&gt;</description>
      <pubDate>Wed, 21 Nov 2012 02:09:30 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/gnu-tar-memory-fault-with-coredump/m-p/4069089#M94714</guid>
      <dc:creator>Matt Hearn</dc:creator>
      <dc:date>2012-11-21T02:09:30Z</dc:date>
    </item>
    <item>
      <title>Re: GNU tar: memory fault, with coredump</title>
      <link>https://community.hpe.com/t5/operating-system-linux/gnu-tar-memory-fault-with-coredump/m-p/4069090#M94715</link>
      <description>There will be an EOF marker at the end of the tarball just as there would be with any file written to tape. If you choose to dd the file, it's far more important that you choose input and output block sizes that are integral multiples of the tape's blocksize.&lt;BR /&gt;&lt;BR /&gt;The only thing that I can suggest is that you download the source for tar and compile it with the -g option. If it does crash, gdb can then pinpoint the explosion. There is even a fairly good chance that if you compile and use -g, the code will no longer crash because the optimizer has been disabled.</description>
      <pubDate>Tue, 11 Sep 2007 19:50:08 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/gnu-tar-memory-fault-with-coredump/m-p/4069090#M94715</guid>
      <dc:creator>A. Clay Stephenson</dc:creator>
      <dc:date>2007-09-11T19:50:08Z</dc:date>
    </item>
    <item>
      <title>Re: GNU tar: memory fault, with coredump</title>
      <link>https://community.hpe.com/t5/operating-system-linux/gnu-tar-memory-fault-with-coredump/m-p/4069091#M94716</link>
      <description>I assume I'd need the Ansi C compiler to do that, right?  I've never had any luck compiling anything in HP-UX without it, and I don't have it on this box, nor any depot or anything I could get it from.&lt;BR /&gt;&lt;BR /&gt;Right now I am dd-ing the file (you're right, I just had to figure out what the block size was; luckily it was the default).  I'm hoping maybe that gnu tar will be able to use the --delete option to get rid of the faulty file without dying, but if not I may try an older version and see if it has difficulties as well.</description>
      <pubDate>Tue, 11 Sep 2007 20:40:57 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/gnu-tar-memory-fault-with-coredump/m-p/4069091#M94716</guid>
      <dc:creator>Matt Hearn</dc:creator>
      <dc:date>2007-09-11T20:40:57Z</dc:date>
    </item>
    <item>
      <title>Re: GNU tar: memory fault, with coredump</title>
      <link>https://community.hpe.com/t5/operating-system-linux/gnu-tar-memory-fault-with-coredump/m-p/4069092#M94717</link>
      <description>I was able to get gdb installed and look at the core file.  Here's what I get:&lt;BR /&gt;&lt;BR /&gt;Core was generated by `tar'.&lt;BR /&gt;Program terminated with signal 11, Segmentation fault.&lt;BR /&gt;#0  0x00010d3c in ?? ()&lt;BR /&gt;(gdb)&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Unfortunately from there I don't know what to do in gdb, so I'm kinda lost.  Interesting that it says Seg Fault in the core, but "Memory Fault" when it actually fails.  Although I guess that's the same thing, it threw me off.  There's definitely more coming from google when I search for "tar segmentation fault" than "tar memory fault."</description>
      <pubDate>Tue, 11 Sep 2007 21:06:51 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/gnu-tar-memory-fault-with-coredump/m-p/4069092#M94717</guid>
      <dc:creator>Matt Hearn</dc:creator>
      <dc:date>2007-09-11T21:06:51Z</dc:date>
    </item>
    <item>
      <title>Re: GNU tar: memory fault, with coredump</title>
      <link>https://community.hpe.com/t5/operating-system-linux/gnu-tar-memory-fault-with-coredump/m-p/4069093#M94718</link>
      <description>Yes, you would need the ANSI compiler or aCC to compile Gnu tar --- or you could install Gnu's gcc and that will do the trick.</description>
      <pubDate>Tue, 11 Sep 2007 21:08:35 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/gnu-tar-memory-fault-with-coredump/m-p/4069093#M94718</guid>
      <dc:creator>A. Clay Stephenson</dc:creator>
      <dc:date>2007-09-11T21:08:35Z</dc:date>
    </item>
    <item>
      <title>Re: GNU tar: memory fault, with coredump</title>
      <link>https://community.hpe.com/t5/operating-system-linux/gnu-tar-memory-fault-with-coredump/m-p/4069094#M94719</link>
      <description>Cool, I'm way ahead of you, even now I'm running the configure and getting ready to kick off my "gmake."&lt;BR /&gt;&lt;BR /&gt;Unfortunately, because I got a C- in C programming, I'm not good at compiling source; I want to use that -g option to disable the optimizer, but I don't know WHERE to use it.  I would assume I have to edit the Makefile; any idea how?  Or can I pass the -g option to gmake somehow?&lt;BR /&gt;&lt;BR /&gt;Thanks!!!</description>
      <pubDate>Tue, 11 Sep 2007 21:13:19 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/gnu-tar-memory-fault-with-coredump/m-p/4069094#M94719</guid>
      <dc:creator>Matt Hearn</dc:creator>
      <dc:date>2007-09-11T21:13:19Z</dc:date>
    </item>
    <item>
      <title>Re: GNU tar: memory fault, with coredump</title>
      <link>https://community.hpe.com/t5/operating-system-linux/gnu-tar-memory-fault-with-coredump/m-p/4069095#M94720</link>
      <description>Core was generated by `tar'.&lt;BR /&gt;Program terminated with signal 11, Segmentation fault.&lt;BR /&gt;#0 0x00010d3c in ??&lt;BR /&gt;&lt;BR /&gt;&amp;gt;Unfortunately from there I don't know what to do in gdb&lt;BR /&gt;&lt;BR /&gt;It looks like it was stripped.&lt;BR /&gt;Can you do:&lt;BR /&gt;(gdb) bt&lt;BR /&gt;(gdb) info reg&lt;BR /&gt;(gdb) disas $pc-4*8 $pc+4*4&lt;BR /&gt;(gdb) q</description>
      <pubDate>Tue, 11 Sep 2007 21:25:23 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/gnu-tar-memory-fault-with-coredump/m-p/4069095#M94720</guid>
      <dc:creator>Dennis Handly</dc:creator>
      <dc:date>2007-09-11T21:25:23Z</dc:date>
    </item>
    <item>
      <title>Re: GNU tar: memory fault, with coredump</title>
      <link>https://community.hpe.com/t5/operating-system-linux/gnu-tar-memory-fault-with-coredump/m-p/4069096#M94721</link>
      <description>Sure.  This is kinda long, hopefully the forum won't truncate it:&lt;BR /&gt;&lt;BR /&gt;Core was generated by `tar'.&lt;BR /&gt;Program terminated with signal 11, Segmentation fault.&lt;BR /&gt;#0  0x00010d3c in ?? ()&lt;BR /&gt;(gdb) bt&lt;BR /&gt;#0  0x00010d3c in ?? ()&lt;BR /&gt;#1  0x00010cdc in ?? ()&lt;BR /&gt;Cannot access memory at address 0x40010000&lt;BR /&gt;(gdb) info reg&lt;BR /&gt;warning: reading register flags: No such process&lt;BR /&gt;     flags:         ffffffff   warning: reading register sr5: No such process&lt;BR /&gt;&lt;BR /&gt;       sr5: ffffffff00000000   warning: reading register r1: No such process&lt;BR /&gt;&lt;BR /&gt;        r1: ffffffff00000000   warning: reading register sr6: No such process&lt;BR /&gt;&lt;BR /&gt;       sr6: ffffffff00000000   warning: reading register rp: No such process&lt;BR /&gt;&lt;BR /&gt;        rp: ffffffff00000000   warning: reading register sr7: No such process&lt;BR /&gt;&lt;BR /&gt;       sr7: ffffffff00000000   warning: reading register r3: No such process&lt;BR /&gt;&lt;BR /&gt;        r3: ffffffff00000000   warning: reading register cr0: No such process&lt;BR /&gt;&lt;BR /&gt;       cr0: ffffffff00000000   warning: reading register r4: No such process&lt;BR /&gt;&lt;BR /&gt;        r4: ffffffff00000000   warning: reading register cr8: No such process&lt;BR /&gt;&lt;BR /&gt;       cr8: ffffffff00000000   warning: reading register r5: No such process&lt;BR /&gt;&lt;BR /&gt;        r5: ffffffff00000000   warning: reading register cr9: No such process&lt;BR /&gt;&lt;BR /&gt;       cr9: ffffffff00000000   warning: reading register r6: No such process&lt;BR /&gt;&lt;BR /&gt;        r6: ffffffff00000000   warning: reading register ccr: No such process&lt;BR /&gt;&lt;BR /&gt;       ccr: ffffffff00000000   warning: reading register r7: No such process&lt;BR /&gt;&lt;BR /&gt;        r7: ffffffff00000000   warning: reading register cr12: No such process&lt;BR /&gt;&lt;BR /&gt;      cr12: ffffffff00000000   warning: reading register r8: No such process&lt;BR /&gt;&lt;BR /&gt;        r8: ffffffff00000000   warning: reading register cr13: No such process&lt;BR /&gt;&lt;BR /&gt;      cr13: ffffffff00000000   warning: reading register r9: No such process&lt;BR /&gt;&lt;BR /&gt;        r9: ffffffff00000000   warning: reading register cr24: No such process&lt;BR /&gt;&lt;BR /&gt;      cr24: ffffffff00000000   warning: reading register r10: No such process&lt;BR /&gt;&lt;BR /&gt;       r10: ffffffff00000000   warning: reading register cr25: No such process&lt;BR /&gt;&lt;BR /&gt;      cr25: ffffffff00000000   warning: reading register r11: No such process&lt;BR /&gt;&lt;BR /&gt;       r11: ffffffff00000000   warning: reading register cr26: No such process&lt;BR /&gt;&lt;BR /&gt;      cr26: ffffffff00000000   warning: reading register r12: No such process&lt;BR /&gt;&lt;BR /&gt;       r12: ffffffff00000000   warning: reading register mpsfu_high: No such process&lt;BR /&gt;&lt;BR /&gt;mpsfu_high: ffffffff00000000   warning: reading register r13: No such process&lt;BR /&gt;&lt;BR /&gt;       r13: ffffffff00000000   warning: reading register mpsfu_low: No such process&lt;BR /&gt;&lt;BR /&gt; mpsfu_low: ffffffff00000000   warning: reading register r14: No such process&lt;BR /&gt;&lt;BR /&gt;       r14: ffffffff00000000   warning: reading register mpsfu_ovflo: No such process&lt;BR /&gt;&lt;BR /&gt;mpsfu_ovfl: ffffffff00000000   warning: reading register r15: No such process&lt;BR /&gt;&lt;BR /&gt;       r15: ffffffff00000000   warning: reading register pad: No such process&lt;BR /&gt;&lt;BR /&gt;       pad: ffffffff00000000   warning: reading register r16: No such process&lt;BR /&gt;&lt;BR /&gt;       r16: ffffffff00000000   warning: reading register fpsr: No such process&lt;BR /&gt;&lt;BR /&gt;      fpsr:         ffffffff   warning: reading register r17: No such process&lt;BR /&gt;&lt;BR /&gt;       r17: ffffffff00000000   warning: reading register fpe1: No such process&lt;BR /&gt;&lt;BR /&gt;      fpe1:         ffffffff   warning: reading register r18: No such process&lt;BR /&gt;&lt;BR /&gt;       r18: ffffffff00000000   warning: reading register fpe2: No such process&lt;BR /&gt;&lt;BR /&gt;      fpe2:         ffffffff   warning: reading register r19: No such process&lt;BR /&gt;&lt;BR /&gt;       r19: ffffffff00000000   warning: reading register fpe3: No such process&lt;BR /&gt;&lt;BR /&gt;      fpe3:         ffffffff   warning: reading register r20: No such process&lt;BR /&gt;&lt;BR /&gt;       r20: ffffffff00000000   warning: reading register fpe4: No such process&lt;BR /&gt;&lt;BR /&gt;      fpe4:         ffffffff   warning: reading register r21: No such process&lt;BR /&gt;&lt;BR /&gt;       r21: ffffffff00000000   warning: reading register fpe5: No such process&lt;BR /&gt;&lt;BR /&gt;      fpe5:         ffffffff   warning: reading register r22: No such process&lt;BR /&gt;&lt;BR /&gt;       r22: ffffffff00000000   warning: reading register fpe6: No such process&lt;BR /&gt;&lt;BR /&gt;      fpe6:         ffffffff   warning: reading register r23: No such process&lt;BR /&gt;&lt;BR /&gt;       r23: ffffffff00000000   warning: reading register fpe7: No such process&lt;BR /&gt;&lt;BR /&gt;      fpe7:         ffffffff   warning: reading register r24: No such process&lt;BR /&gt;&lt;BR /&gt;       r24: ffffffff00000000   warning: reading register fr4: No such process&lt;BR /&gt;&lt;BR /&gt;       fr4:         ffffffff   warning: reading register r25: No such process&lt;BR /&gt;&lt;BR /&gt;       r25: ffffffff00000000   warning: reading register fr4R: No such process&lt;BR /&gt;&lt;BR /&gt;      fr4R:         ffffffff   warning: reading register r26: No such process&lt;BR /&gt;&lt;BR /&gt;       r26: ffffffff00000000   warning: reading register fr5: No such process&lt;BR /&gt;&lt;BR /&gt;       fr5:         ffffffff   warning: reading register dp: No such process&lt;BR /&gt;&lt;BR /&gt;        dp: ffffffff00000000   warning: reading register fr5R: No such process&lt;BR /&gt;&lt;BR /&gt;      fr5R:         ffffffff   warning: reading register ret0: No such process&lt;BR /&gt;&lt;BR /&gt;      ret0: ffffffff00000000   warning: reading register fr6: No such process&lt;BR /&gt;&lt;BR /&gt;       fr6:         ffffffff   warning: reading register ret1: No such process&lt;BR /&gt;&lt;BR /&gt;      ret1: ffffffff00000000   warning: reading register fr6R: No such process&lt;BR /&gt;&lt;BR /&gt;      fr6R:         ffffffff   warning: reading register sp: No such process&lt;BR /&gt;&lt;BR /&gt;        sp: ffffffff00000000   warning: reading register fr7: No such process&lt;BR /&gt;&lt;BR /&gt;       fr7:         ffffffff   warning: reading register r31: No such process&lt;BR /&gt;&lt;BR /&gt;       r31: ffffffff00000000   warning: reading register fr7R: No such process&lt;BR /&gt;&lt;BR /&gt;      fr7R:         ffffffff   warning: reading register sar: No such process&lt;BR /&gt;&lt;BR /&gt;       sar: ffffffff00000000   warning: reading register fr8: No such process&lt;BR /&gt;&lt;BR /&gt;       fr8:         ffffffff   warning: reading register pcoqh: No such process&lt;BR /&gt;&lt;BR /&gt;     pcoqh: ffffffff00000000   warning: reading register fr8R: No such process&lt;BR /&gt;&lt;BR /&gt;      fr8R:         ffffffff   warning: reading register pcsqh: No such process&lt;BR /&gt;&lt;BR /&gt;     pcsqh: ffffffff00000000   warning: reading register fr9: No such process&lt;BR /&gt;&lt;BR /&gt;       fr9:         ffffffff   warning: reading register pcoqt: No such process&lt;BR /&gt;&lt;BR /&gt;     pcoqt: ffffffff00000000   warning: reading register fr9R: No such process&lt;BR /&gt;&lt;BR /&gt;      fr9R:         ffffffff   warning: reading register pcsqt: No such process&lt;BR /&gt;&lt;BR /&gt;     pcsqt: ffffffff00000000   warning: reading register fr10: No such process&lt;BR /&gt;&lt;BR /&gt;      fr10:         ffffffff   warning: reading register eiem: No such process&lt;BR /&gt;&lt;BR /&gt;      eiem: ffffffff00000000   warning: reading register fr10R: No such process&lt;BR /&gt;&lt;BR /&gt;     fr10R:         ffffffff   warning: reading register iir: No such process&lt;BR /&gt;&lt;BR /&gt;       iir: ffffffff00000000   warning: reading register fr11: No such process&lt;BR /&gt;&lt;BR /&gt;      fr11:         ffffffff   warning: reading register isr: No such process&lt;BR /&gt;&lt;BR /&gt;       isr: ffffffff00000000   warning: reading register fr11R: No such process&lt;BR /&gt;&lt;BR /&gt;     fr11R:         ffffffff   warning: reading register ior: No such process&lt;BR /&gt;&lt;BR /&gt;       ior: ffffffff00000000   warning: reading register fr12: No such process&lt;BR /&gt;&lt;BR /&gt;      fr12:         ffffffff   warning: reading register ipsw: No such process&lt;BR /&gt;&lt;BR /&gt;---Type &lt;RETURN&gt; to continue, or q &lt;RETURN&gt; to quit---&lt;BR /&gt;      ipsw: ffffffff00000000   warning: reading register fr12R: No such process&lt;BR /&gt;&lt;BR /&gt;     fr12R:         ffffffff   warning: reading register goto: No such process&lt;BR /&gt;&lt;BR /&gt;      goto: ffffffff00000000   warning: reading register fr13: No such process&lt;BR /&gt;&lt;BR /&gt;      fr13:         ffffffff   warning: reading register sr4: No such process&lt;BR /&gt;&lt;BR /&gt;       sr4: ffffffff00000000   warning: reading register fr13R: No such process&lt;BR /&gt;&lt;BR /&gt;     fr13R:         ffffffff   warning: reading register sr0: No such process&lt;BR /&gt;&lt;BR /&gt;       sr0: ffffffff00000000   warning: reading register fr14: No such process&lt;BR /&gt;&lt;BR /&gt;      fr14:         ffffffff   warning: reading register sr1: No such process&lt;BR /&gt;&lt;BR /&gt;       sr1: ffffffff00000000   warning: reading register fr14R: No such process&lt;BR /&gt;&lt;BR /&gt;     fr14R:         ffffffff   warning: reading register sr2: No such process&lt;BR /&gt;&lt;BR /&gt;       sr2: ffffffff00000000   warning: reading register fr15: No such process&lt;BR /&gt;&lt;BR /&gt;      fr15:         ffffffff   warning: reading register sr3: No such process&lt;BR /&gt;&lt;BR /&gt;       sr3: ffffffff00000000   warning: reading register fr15R: No such process&lt;BR /&gt;&lt;BR /&gt;(gdb) disas $pc-4*8 $pc+4*4&lt;BR /&gt;     fr15R:         ffffffff   Dump of assembler code from 0x10d1c to 0x10d4c:&lt;BR /&gt;0x10d1c:        Cannot access memory at address 0x10d1c&lt;BR /&gt;&lt;/RETURN&gt;&lt;/RETURN&gt;</description>
      <pubDate>Tue, 11 Sep 2007 21:38:28 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/gnu-tar-memory-fault-with-coredump/m-p/4069096#M94721</guid>
      <dc:creator>Matt Hearn</dc:creator>
      <dc:date>2007-09-11T21:38:28Z</dc:date>
    </item>
    <item>
      <title>Re: GNU tar: memory fault, with coredump</title>
      <link>https://community.hpe.com/t5/operating-system-linux/gnu-tar-memory-fault-with-coredump/m-p/4069097#M94722</link>
      <description>Also, I've tried to compile using gnu's gcc, and I'm getting the usual errors about how various things are ANSI C options and it fails.&lt;BR /&gt;&lt;BR /&gt;I'd LIKE to get my hands on an older version of GNU tar, but hpux.cs.utah.edu only maintains the current version.  Any ideas where I might be able to find a depot for a previous version of gtar?</description>
      <pubDate>Tue, 11 Sep 2007 21:44:27 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/gnu-tar-memory-fault-with-coredump/m-p/4069097#M94722</guid>
      <dc:creator>Matt Hearn</dc:creator>
      <dc:date>2007-09-11T21:44:27Z</dc:date>
    </item>
    <item>
      <title>Re: GNU tar: memory fault, with coredump</title>
      <link>https://community.hpe.com/t5/operating-system-linux/gnu-tar-memory-fault-with-coredump/m-p/4069098#M94723</link>
      <description>&amp;gt;This is kinda long,&lt;BR /&gt;&lt;BR /&gt;Unfortunately there was nothing useful.&lt;BR /&gt;How did you get the stack trace?  Did you first do:&lt;BR /&gt;$ gdb tar core</description>
      <pubDate>Tue, 11 Sep 2007 21:47:36 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/gnu-tar-memory-fault-with-coredump/m-p/4069098#M94723</guid>
      <dc:creator>Dennis Handly</dc:creator>
      <dc:date>2007-09-11T21:47:36Z</dc:date>
    </item>
    <item>
      <title>Re: GNU tar: memory fault, with coredump</title>
      <link>https://community.hpe.com/t5/operating-system-linux/gnu-tar-memory-fault-with-coredump/m-p/4069099#M94724</link>
      <description>I did:&lt;BR /&gt;&lt;BR /&gt;# /usr/local/bin/gdb executable core&lt;BR /&gt;&lt;BR /&gt;I tried it with&lt;BR /&gt;&lt;BR /&gt;# /usr/local/bin/gdb tar core&lt;BR /&gt;&lt;BR /&gt;and the output looks about the same, at least to me.</description>
      <pubDate>Tue, 11 Sep 2007 21:58:41 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/gnu-tar-memory-fault-with-coredump/m-p/4069099#M94724</guid>
      <dc:creator>Matt Hearn</dc:creator>
      <dc:date>2007-09-11T21:58:41Z</dc:date>
    </item>
    <item>
      <title>Re: GNU tar: memory fault, with coredump</title>
      <link>https://community.hpe.com/t5/operating-system-linux/gnu-tar-memory-fault-with-coredump/m-p/4069100#M94725</link>
      <description># /usr/local/bin/gdb executable core&lt;BR /&gt;&lt;BR /&gt;That looks right except you should use HP's gdb:&lt;BR /&gt;/opt/langtools/bin/gdb&lt;BR /&gt;&lt;BR /&gt;You can download a copy from &lt;A href="http://www.hp.com/go/wdb" target="_blank"&gt;http://www.hp.com/go/wdb&lt;/A&gt;</description>
      <pubDate>Tue, 11 Sep 2007 22:01:55 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/gnu-tar-memory-fault-with-coredump/m-p/4069100#M94725</guid>
      <dc:creator>Dennis Handly</dc:creator>
      <dc:date>2007-09-11T22:01:55Z</dc:date>
    </item>
    <item>
      <title>Re: GNU tar: memory fault, with coredump</title>
      <link>https://community.hpe.com/t5/operating-system-linux/gnu-tar-memory-fault-with-coredump/m-p/4069101#M94726</link>
      <description>&lt;!--!*#--&gt;&amp;gt; I've installed the GNU one, version 1.15.1.&lt;BR /&gt;&lt;BR /&gt;Why?  GNU tar 1.18 is current.&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://www.gnu.org/software/tar/" target="_blank"&gt;http://www.gnu.org/software/tar/&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&amp;gt; [...] I want to use that -g option to&lt;BR /&gt;&amp;gt; disable the optimizer, but I don't know&lt;BR /&gt;&amp;gt; WHERE to use it.  [...]&lt;BR /&gt;&lt;BR /&gt;The INSTALL document explains this:&lt;BR /&gt;&lt;BR /&gt;      ./configure CFLAGS=-g &lt;BR /&gt;&lt;BR /&gt;I'm eccentric, but I'd start by building the&lt;BR /&gt;current version normally, and then, if that&lt;BR /&gt;fails, I'd start looking at debugging it.&lt;BR /&gt;&lt;BR /&gt;&amp;gt; [...] I'm aware of the 2GB limitation [...]&lt;BR /&gt;&lt;BR /&gt;Have you large files in the archive which&lt;BR /&gt;cause trouble, or are you just trying to be&lt;BR /&gt;careful?</description>
      <pubDate>Tue, 11 Sep 2007 22:17:57 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/gnu-tar-memory-fault-with-coredump/m-p/4069101#M94726</guid>
      <dc:creator>Steven Schweda</dc:creator>
      <dc:date>2007-09-11T22:17:57Z</dc:date>
    </item>
    <item>
      <title>Re: GNU tar: memory fault, with coredump</title>
      <link>https://community.hpe.com/t5/operating-system-linux/gnu-tar-memory-fault-with-coredump/m-p/4069102#M94727</link>
      <description>&amp;gt;Why?  GNU tar 1.18 is current.&lt;BR /&gt;&amp;gt;&lt;BR /&gt;&amp;gt; &lt;A href="http://www.gnu.org/software/tar/" target="_blank"&gt;http://www.gnu.org/software/tar/&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;Because 1.15.1 is the version available in depot form at hpux.cs.utah.edu.  I've never been able to compile source on HP-UX because my bosses won't drop $966 on the ANSI C compiler.&lt;BR /&gt;&lt;BR /&gt;I did get the 1.15.1 source and tried to compile with gnu's gcc, and got the usual results: there are options in the Makefile and source code that require ANSI C.&lt;BR /&gt;&lt;BR /&gt;&amp;gt; Have you large files in the archive which&lt;BR /&gt;&amp;gt; cause trouble, or are you just trying to be&lt;BR /&gt;&amp;gt; careful?&lt;BR /&gt;&lt;BR /&gt;The tapes I'm trying to read have some large datafiles, up to about 60GB in size.  So the native tar won't read it.  Unfortunately it seems that GNU tar can't handle funny owner/group information, even if told to ignore it!</description>
      <pubDate>Tue, 11 Sep 2007 22:29:43 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/gnu-tar-memory-fault-with-coredump/m-p/4069102#M94727</guid>
      <dc:creator>Matt Hearn</dc:creator>
      <dc:date>2007-09-11T22:29:43Z</dc:date>
    </item>
    <item>
      <title>Re: GNU tar: memory fault, with coredump</title>
      <link>https://community.hpe.com/t5/operating-system-linux/gnu-tar-memory-fault-with-coredump/m-p/4069103#M94728</link>
      <description>&amp;gt; You can download a copy from &lt;BR /&gt;&amp;gt; &lt;A href="http://www.hp.com/go/wdb" target="_blank"&gt;http://www.hp.com/go/wdb&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;Which of course doesn't seem to be working today for whatever reason; I enter in my login info, click to agree to the license agreement, and am dumped to a blank page.  I am not having much luck tonight!</description>
      <pubDate>Tue, 11 Sep 2007 22:34:29 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/gnu-tar-memory-fault-with-coredump/m-p/4069103#M94728</guid>
      <dc:creator>Matt Hearn</dc:creator>
      <dc:date>2007-09-11T22:34:29Z</dc:date>
    </item>
    <item>
      <title>Re: GNU tar: memory fault, with coredump</title>
      <link>https://community.hpe.com/t5/operating-system-linux/gnu-tar-memory-fault-with-coredump/m-p/4069104#M94729</link>
      <description>&amp;gt; I did get the 1.15.1 source and tried to&lt;BR /&gt;&amp;gt; compile with gnu's gcc, and got the usual&lt;BR /&gt;&amp;gt; results: there are options in the Makefile&lt;BR /&gt;&amp;gt; and source code that require ANSI C.&lt;BR /&gt;&lt;BR /&gt;If you're claiming that GCC can't compile GNU&lt;BR /&gt;"tar", then I find that a bit difficult to&lt;BR /&gt;swallow.  Especially when I've used "gcc&lt;BR /&gt;(GCC) 4.2.1" to build "tar (GNU tar) 1.18"&lt;BR /&gt;on my system:&lt;BR /&gt;&lt;BR /&gt;dy # uname -a&lt;BR /&gt;HP-UX dy B.11.11 U 9000/785 2012616114 unlimited-user license&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;As usual, it might help to see exactly what&lt;BR /&gt;you did, and what went wrong when you did it.&lt;BR /&gt;(It _is_ true that the HP bundled C compiler&lt;BR /&gt;will fail to build the thing, but GCC should&lt;BR /&gt;have no trouble.)</description>
      <pubDate>Tue, 11 Sep 2007 22:50:54 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/gnu-tar-memory-fault-with-coredump/m-p/4069104#M94729</guid>
      <dc:creator>Steven Schweda</dc:creator>
      <dc:date>2007-09-11T22:50:54Z</dc:date>
    </item>
    <item>
      <title>Re: GNU tar: memory fault, with coredump</title>
      <link>https://community.hpe.com/t5/operating-system-linux/gnu-tar-memory-fault-with-coredump/m-p/4069105#M94730</link>
      <description>I'll be the first to admit that when it comes to compiling stuff, I'm completely out of my depth.  Here's what I did:&lt;BR /&gt;&lt;BR /&gt;I downloaded tar-1.18, placed it in a location in root's home (/root/), unzipped and untarred it, entered the directory.  I typed "./configure" and it poured a bunch of things to my screen, the bulk of which are meaningless to me.&lt;BR /&gt;&lt;BR /&gt;I then typed "/usr/local/bin/gmake" and got a lengthy response finishing with:&lt;BR /&gt;&lt;BR /&gt;gmake[3]: Entering directory `/root/tar-1.18/lib'&lt;BR /&gt;source='argp-ba.c' object='argp-ba.o' libtool=no \&lt;BR /&gt;        DEPDIR=.deps depmode=hp /usr/bin/posix/sh ../build-aux/depcomp \&lt;BR /&gt;        cc -DHAVE_CONFIG_H -I. -I. -I..      -c argp-ba.c&lt;BR /&gt;(Bundled) cc: "argp-ba.c", line 25: warning 5: "const" will become a keyword.&lt;BR /&gt;(Bundled) cc: "argp-ba.c", line 25: error 1000: Unexpected symbol: "char".&lt;BR /&gt;gmake[3]: *** [argp-ba.o] Error 1&lt;BR /&gt;gmake[3]: Leaving directory `/root/tar-1.18/lib'&lt;BR /&gt;gmake[2]: *** [all] Error 2&lt;BR /&gt;gmake[2]: Leaving directory `/root/tar-1.18/lib'&lt;BR /&gt;gmake[1]: *** [all-recursive] Error 1&lt;BR /&gt;gmake[1]: Leaving directory `/root/tar-1.18'&lt;BR /&gt;gmake: *** [all] Error 2&lt;BR /&gt;&lt;BR /&gt;I find it hard to swallow that gcc would choke on the word "char," so I don't know what on earth is going on here.  I'm sure there's some kind of changes I need to make to the Makefile so that it'll compile on my system, but I don't know what they would be.  I tried changing every reference to "cc" to "gcc," and even to "/usr/local/bin/gcc," but that doesn't seem to do much.</description>
      <pubDate>Tue, 11 Sep 2007 23:02:29 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/gnu-tar-memory-fault-with-coredump/m-p/4069105#M94730</guid>
      <dc:creator>Matt Hearn</dc:creator>
      <dc:date>2007-09-11T23:02:29Z</dc:date>
    </item>
    <item>
      <title>Re: GNU tar: memory fault, with coredump</title>
      <link>https://community.hpe.com/t5/operating-system-linux/gnu-tar-memory-fault-with-coredump/m-p/4069106#M94731</link>
      <description>&amp;gt;Which of course doesn't seem to be working today for whatever reason; &lt;BR /&gt;&lt;BR /&gt;It worked a few hours ago.  Works fine for me now but I'm internal.</description>
      <pubDate>Tue, 11 Sep 2007 23:03:14 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/gnu-tar-memory-fault-with-coredump/m-p/4069106#M94731</guid>
      <dc:creator>Dennis Handly</dc:creator>
      <dc:date>2007-09-11T23:03:14Z</dc:date>
    </item>
    <item>
      <title>Re: GNU tar: memory fault, with coredump</title>
      <link>https://community.hpe.com/t5/operating-system-linux/gnu-tar-memory-fault-with-coredump/m-p/4069107#M94732</link>
      <description>&amp;gt; (Bundled) cc: "argp-ba.c", line 25: warning 5: "const" will become a keyword.&lt;BR /&gt;&lt;BR /&gt;"(Bundled) cc" is not GCC.&lt;BR /&gt;&lt;BR /&gt;I'd expect the "configure" script to find&lt;BR /&gt;"gcc", if it's on your PATH.  Is&lt;BR /&gt;/usr/local/bin on your PATH?  What does&lt;BR /&gt;"gcc --version" say?</description>
      <pubDate>Wed, 12 Sep 2007 00:02:09 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/gnu-tar-memory-fault-with-coredump/m-p/4069107#M94732</guid>
      <dc:creator>Steven Schweda</dc:creator>
      <dc:date>2007-09-12T00:02:09Z</dc:date>
    </item>
    <item>
      <title>Re: GNU tar: memory fault, with coredump</title>
      <link>https://community.hpe.com/t5/operating-system-linux/gnu-tar-memory-fault-with-coredump/m-p/4069108#M94733</link>
      <description>&amp;gt;Steven: I'd expect the "configure" script to find "gcc", if it's on your PATH. &lt;BR /&gt;&lt;BR /&gt;If it always finds cc before gcc, I think you can use: configure ... cc=gcc</description>
      <pubDate>Wed, 12 Sep 2007 00:37:24 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/gnu-tar-memory-fault-with-coredump/m-p/4069108#M94733</guid>
      <dc:creator>Dennis Handly</dc:creator>
      <dc:date>2007-09-12T00:37:24Z</dc:date>
    </item>
  </channel>
</rss>

