<?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 Tar error in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/tar-error/m-p/2685717#M54075</link>
    <description>couldn't get uname for uid 9175. there is no user 9175 and never has been. Also when I do a find it does not come up with any files owned or touched by this user or the gid 42424. I know I can ignore it but it is taking up thousands of lines in my tar file.</description>
    <pubDate>Tue, 19 Mar 2002 00:46:46 GMT</pubDate>
    <dc:creator>Kim Porter</dc:creator>
    <dc:date>2002-03-19T00:46:46Z</dc:date>
    <item>
      <title>Tar error</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/tar-error/m-p/2685717#M54075</link>
      <description>couldn't get uname for uid 9175. there is no user 9175 and never has been. Also when I do a find it does not come up with any files owned or touched by this user or the gid 42424. I know I can ignore it but it is taking up thousands of lines in my tar file.</description>
      <pubDate>Tue, 19 Mar 2002 00:46:46 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/tar-error/m-p/2685717#M54075</guid>
      <dc:creator>Kim Porter</dc:creator>
      <dc:date>2002-03-19T00:46:46Z</dc:date>
    </item>
    <item>
      <title>Re: Tar error</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/tar-error/m-p/2685718#M54076</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;I've seen this many times when you do a download from a site a compressed tar archive.&lt;BR /&gt;They may come with a uid and gid that was owned&lt;BR /&gt;on their system. This will explain where the &lt;BR /&gt;mysterious numbers come from. I know that &lt;BR /&gt;downloading an apache version from apache has&lt;BR /&gt;this exact problem.&lt;BR /&gt;Try:&lt;BR /&gt;&lt;BR /&gt;find / -user "9175" -print&lt;BR /&gt;find / -group "42424" -print&lt;BR /&gt;&lt;BR /&gt;HTH&lt;BR /&gt;Michael&lt;BR /&gt;</description>
      <pubDate>Tue, 19 Mar 2002 00:54:04 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/tar-error/m-p/2685718#M54076</guid>
      <dc:creator>Michael Tully</dc:creator>
      <dc:date>2002-03-19T00:54:04Z</dc:date>
    </item>
    <item>
      <title>Re: Tar error</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/tar-error/m-p/2685719#M54077</link>
      <description>The messages that are coming up are informational messages and do NOT occupy any extra space in the tar file.&lt;BR /&gt;&lt;BR /&gt;As was said, this is almost surely due to a downloaded tar archive that had that specific uid.  No harm anywhere with this message.</description>
      <pubDate>Tue, 19 Mar 2002 00:57:23 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/tar-error/m-p/2685719#M54077</guid>
      <dc:creator>Patrick Wallek</dc:creator>
      <dc:date>2002-03-19T00:57:23Z</dc:date>
    </item>
    <item>
      <title>Re: Tar error</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/tar-error/m-p/2685720#M54078</link>
      <description>Kim,&lt;BR /&gt;What command are you using to untar the files? Far as I know, "tar xf &lt;TARBALL&gt;" does not crib about undefined users and groups.&lt;BR /&gt;In any case, there is an upside to tarballs from public ftp sites having unreasonably high UIDs and GIDs - if you had a user "johndoe" with UID 9175, then a listing of the tar files whould show "johndoe" as the owner. Which could create a little bit of confusion.&lt;BR /&gt;Just my $0.02.&lt;BR /&gt;&lt;/TARBALL&gt;</description>
      <pubDate>Tue, 19 Mar 2002 02:36:57 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/tar-error/m-p/2685720#M54078</guid>
      <dc:creator>Deepak Extross</dc:creator>
      <dc:date>2002-03-19T02:36:57Z</dc:date>
    </item>
    <item>
      <title>Re: Tar error</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/tar-error/m-p/2685721#M54079</link>
      <description>The easiest way to fix the file  system error is untar the tape as a user and NOT root.  The way tar is built, a non root user assumes ownership of the files when extracted and their umask is applied.  As root, original modes are restored.&lt;BR /&gt;&lt;BR /&gt;If you have to re-create the tape, again as a real user (make sure they can read what needs to be put on tape.&lt;BR /&gt;&lt;BR /&gt;Last, there is a nice way to find all the files not owned by anyone will take a bit of work, but I'll point you in the direction.&lt;BR /&gt;find / -depth -exec /bin/ls -l {} \; &amp;gt;&amp;gt;/somebigarea/bigfilelist&lt;BR /&gt;*Syntax is critical!&lt;BR /&gt;If you look at the file, you should be able to see the columns dealing with user/group. (You'll probably have to widen your terminal though...).&lt;BR /&gt;&lt;BR /&gt;awk has a very nice builtin from C (isnum) so that you can cat the file, pipe to awk, if user/group is a number then changemod it! :)&lt;BR /&gt;&lt;BR /&gt;It's a big chore, and always test scripts before you run them!!!!!&lt;DONT say="" id="" did="" not="" warn="" you="" if="" login="" ends="" up="" 644="" owned="" by="" bin=""&gt;!&lt;BR /&gt;&lt;BR /&gt;Have fun, and remember the beauty is that there are many unique ways to solve any problem!&lt;BR /&gt;&lt;BR /&gt;Shannon&lt;/DONT&gt;</description>
      <pubDate>Tue, 19 Mar 2002 02:57:05 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/tar-error/m-p/2685721#M54079</guid>
      <dc:creator>Shannon Petry</dc:creator>
      <dc:date>2002-03-19T02:57:05Z</dc:date>
    </item>
    <item>
      <title>Re: Tar error</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/tar-error/m-p/2685722#M54080</link>
      <description>Hi&lt;BR /&gt;&lt;BR /&gt;totally agree with the guys why these UID's exist.&lt;BR /&gt;&lt;BR /&gt;I change my false ID's to real ID's using the following command&lt;BR /&gt;&lt;BR /&gt;find . -user "9175" -exec chown real_user_name {}\;&lt;BR /&gt;&lt;BR /&gt;find . -group "42424" -exec chgrp real_group_name {} \;&lt;BR /&gt;&lt;BR /&gt;If you do this tar will stop complaining.&lt;BR /&gt;&lt;BR /&gt;If you have lots of false UID's and GID's let us know and we will expand to accomodate.&lt;BR /&gt;&lt;BR /&gt;good luck&lt;BR /&gt;John.</description>
      <pubDate>Tue, 19 Mar 2002 03:23:49 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/tar-error/m-p/2685722#M54080</guid>
      <dc:creator>John Carr_2</dc:creator>
      <dc:date>2002-03-19T03:23:49Z</dc:date>
    </item>
  </channel>
</rss>

