Tar --acl 选项在 1.25 版本中缺失

Tar --acl option is missing from 1.25 version

我正在尝试升级系统上的 tar 版本。 以下是当前版本。

# tar --version
tar (GNU tar) 1.17

如果我们执行tar --help


文件属性的处理:

  --acls                 Save the ACLs to the archive
  --atime-preserve       don't change access times on dumped files

我们可以看到 --acls 选项可用。

我下载了 1.25 tar 版本,编译后我发现 --acl 选项在最新的 tar 版本中不可用。

我错过了什么吗?或者该选项被其他选项替换?

您的问题的解决方案是将 -- 与 acl(选项)一起使用。不要那样做,你必须使用一个破折号(-).

所以,选项是tar -acl archive.tar

这肯定对你有帮助。