AIX 6.1,焦油问题

发布于 2024-11-26 16:38:39 字数 207 浏览 3 评论 0原文

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

煮酒 2024-12-03 16:38:39

手册页对这个主题非常有启发性。您的 tar 文件可能不严格兼容 POSIX。在 AIX 上:

The prefix buffer can be a maximum of 155 bytes and the name buffer can
hold a maximum of 100 bytes. If the path name cannot be split into
these two parts by a slash, it cannot be archived.

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 prefix buffer can be a maximum of 155 bytes and the name buffer can
hold a maximum of 100 bytes. If the path name cannot be split into
these two parts by a slash, it cannot be archived.

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文