1822040 Members
3381 Online
109640 Solutions
New Discussion юеВ

Re: tar issue

 
sreejith_4
Frequent Advisor

tar issue

Hi,

Any idea about this error.

tar: uid_t value 18446744073709551614 too large (max=16777215); substituting 60001

Thanks in Advance
Sreejith M

9 REPLIES 9
Naveej.K.A
Honored Contributor

Re: tar issue

hi sreejith,

which OS??

when does this error come?? I mean which command produce this error??

regds
Naveej
practice makes a man perfect!!!
Manish Srivastava
Trusted Contributor

Re: tar issue

Hi,

I have never seen this problem. Looks like a case of overflow of uid_t type. COuld you give the version of HPUX where you see this problem.

manish
Eric Antunes
Honored Contributor

Re: tar issue

It's seems to me that you are trying to add/extract a larger than maximum allowed file.

Each and every day is a good day to learn.
sreejith_4
Frequent Advisor

Re: tar issue

This is happening in hp 11.0 while using tar through some scripts.


harry d brown jr
Honored Contributor

Re: tar issue

It's easy, you have a UID that is TOO LARGE for tar to handle. I'm not sure the patches for tar fix it, so I suggest you try GNU's TAR :

http://hpux.cs.utah.edu/hppd/hpux/Gnu/tar-1.14/

live free or die
harry
Live Free or Die
Eric Antunes
Honored Contributor

Re: tar issue

Here is the warning from tar manual:

"Because of industry standards and interoperability goals, tar does not support the archival of files larger than 2GB or files that have user/group IDs greater than 60K. Files with user/group IDs greater than 60K are archived and restored under the user/group ID of the current process."
Each and every day is a good day to learn.
harry d brown jr
Honored Contributor

Re: tar issue

It has nothing to do with the SIZE of the file. It is a UID issue. A lot of older apps can not handle LARGE Integers. tar "handles" it by changing the UID of the file as it put's it to tape.

live free or die
harry
Live Free or Die
harry d brown jr
Honored Contributor

Re: tar issue

A patched "tar":

man tar (extract):

Because of industry standards and interoperability goals, tar does not support the archival of files larger than 8GB or files that have user/group IDs greater than 2048k. Files with user/group IDs greater than 2048k are archived and restored under the user/group ID of the current process, unless the uname/gname exists (see tar(4)).

go with gnu's tar

live free or die
harry
Live Free or Die
Eric Antunes
Honored Contributor

Re: tar issue

This is the same issue, just with other values...!

Besides, my unpacthed tar(1) works very well for me.
Each and every day is a good day to learn.