AIX 6.1,焦油问题
AIX6.1,我使用java执行tar命令来解压tar包。我遇到的一件奇怪的事情是 tar 包中的一些长名称文件无法提取到它们应该在的位置。但发生在当前工作文件夹中。并且这些文件的文件所有者也不正确。
我用谷歌搜索,发现有很多帖子使用 GUN tar 来避免长文件名问题。但我确信这与我遇到的问题不是同一个问题。
有谁知道为什么会发生这种情况?非常感谢任何提示。谢谢。
AIX6.1, I use java to execute a tar command to extract a tar package. one stange thing I met is that some files with long name in thi tar package failed to be extracted to where they should be. but occurs at current working folder. and the file owner of these files are not correct too.
I googled and found that there many post for use GUN tar instead to avoid long file name issue. but I am sure this is not the same issue as I met.
is there anyone know why this happen? any tips are appreciate much. thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
手册页对这个主题非常有启发性。您的 tar 文件可能不严格兼容 POSIX。在 AIX 上:
GNU tar 的 Linux 手册页表示它可以处理各种 tar 文件格式变体。其中之一是“ustar”POSIX 标准,它似乎是由 AIX tar 处理的标准。有一个单独的 gnu 格式,这是 GNU tar 的默认格式。
我怀疑您正在使用只能理解 POSIX 标准的 tar 工具打开 GNU tar 存档,并且它无法完全应对。
The man pages are pretty instructive on this topic. Probably your tar file is not strictly POSIX compatible. On AIX:
The Linux man page for GNU tar says it can handle a variety of tar file format variants. One of these is the 'ustar' POSIX standard, which appears to be the one handled by AIX tar. There is a separate gnu format, which is the default for GNU tar.
I'd suspect you're opening a GNU tar archive with a tar tool which only understands the POSIX standard, and it can't quite cope.