- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Tar error
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-18-2002 04:46 PM
03-18-2002 04:46 PM
Tar error
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-18-2002 04:54 PM
03-18-2002 04:54 PM
Re: Tar error
I've seen this many times when you do a download from a site a compressed tar archive.
They may come with a uid and gid that was owned
on their system. This will explain where the
mysterious numbers come from. I know that
downloading an apache version from apache has
this exact problem.
Try:
find / -user "9175" -print
find / -group "42424" -print
HTH
Michael
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-18-2002 04:57 PM
03-18-2002 04:57 PM
Re: Tar error
As was said, this is almost surely due to a downloaded tar archive that had that specific uid. No harm anywhere with this message.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-18-2002 06:36 PM
03-18-2002 06:36 PM
Re: Tar error
What command are you using to untar the files? Far as I know, "tar xf
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.
Just my $0.02.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-18-2002 06:57 PM
03-18-2002 06:57 PM
Re: Tar error
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.
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.
find / -depth -exec /bin/ls -l {} \; >>/somebigarea/bigfilelist
*Syntax is critical!
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...).
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! :)
It's a big chore, and always test scripts before you run them!!!!!
Have fun, and remember the beauty is that there are many unique ways to solve any problem!
Shannon
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-18-2002 07:23 PM
03-18-2002 07:23 PM
Re: Tar error
totally agree with the guys why these UID's exist.
I change my false ID's to real ID's using the following command
find . -user "9175" -exec chown real_user_name {}\;
find . -group "42424" -exec chgrp real_group_name {} \;
If you do this tar will stop complaining.
If you have lots of false UID's and GID's let us know and we will expand to accomodate.
good luck
John.