我试图从源代码构建ONOS控制器,但在bazel构建过程的某个阶段,我遇到了很多错误,如下所示:
Starting local Bazel server and connecting to it...
... still trying to connect to local Bazel server after 10 seconds ...
INFO: Analyzed target //:onos (1728 packages loaded, 58166 targets configured).
INFO: Found 1 target...
INFO: Deleting stale sandbox base /home/kevin/.cache/bazel/_bazel_root/b80cf3299f3992e280eed8f85033340e/sandbox
ERROR: /home/kevin/onos/BUILD:52:1: Executing genrule //:onos-karaf failed (Exit 2) bash failed: error executing command /bin/bash -c ... (remaining 1 argument(s) skipped)
Use --sandbox_debug to see verbose messages from the sandbox
tar: apache-karaf-4.2.9/etc/org.ops4j.pax.logging.cfg: Cannot change ownership to uid 1001, gid 1001: Invalid argument
tar: apache-karaf-4.2.9/etc/java.util.logging.properties: Cannot change ownership to uid 1001, gid 1001: Invalid argument
tar: apache-karaf-4.2.9/etc/org.apache.karaf.command.acl.feature.cfg: Cannot change ownership to uid 1001, gid 1001: Invalid argument
tar: apache-karaf-4.2.9/etc/org.apache.karaf.shell.cfg: Cannot change ownership to uid 1001, gid 1001: Invalid argument
tar: apache-karaf-4.2.9/etc/org.apache.karaf.kar.cfg: Cannot change ownership to uid 1001, gid 1001: Invalid argument
tar: apache-karaf-4.2.9/etc/jmx.acl.osgi.compendium.cm.cfg: Cannot change ownership to uid 1001, gid 1001: Invalid argument
tar: apache-karaf-4.2.9/etc/distribution.info: Cannot change ownership to uid 1001, gid 1001: Invalid argument
tar: apache-karaf-4.2.9/etc/org.apache.karaf.command.acl.config.cfg: Cannot change ownership to uid 1001, gid 1001: Invalid argument
tar: apache-karaf-4.2.9/etc/system.properties: Cannot change ownership to uid 1001, gid 1001: Invalid argument
tar: apache-karaf-4.2.9/etc/jre.properties: Cannot change ownership to uid 1001, gid 1001: Invalid argument
tar: apache-karaf-4.2.9/etc/all.policy: Cannot change ownership to uid 1001, gid 1001: Invalid argument
tar: apache-karaf-4.2.9/etc/org.apache.karaf.command.acl.shell.cfg: Cannot change ownership to uid 1001, gid 1001: Invalid argument
tar: apache-karaf-4.2.9/etc/users.properties: Cannot change ownership to uid 1001, gid 1001: Invalid argument
tar: apache-karaf-4.2.9/etc/startup.properties: Cannot change ownership to uid 1001, gid 1001: Invalid argument
tar: apache-karaf-4.2.9/etc/jmx.acl.org.apache.karaf.config.cfg: Cannot change ownership to uid 1001, gid 1001: Invalid argument
tar: apache-karaf-4.2.9/etc/org.apache.karaf.command.acl.jaas.cfg: Cannot change ownership to uid 1001, gid 1001: Invalid argument
tar: apache-karaf-4.2.9/etc/org.apache.felix.eventadmin.impl.EventAdmin.cfg: Cannot change ownership to uid 1001, gid 1001: Invalid argument
tar: apache-karaf-4.2.9/etc/scripts/shell.completion.script: Cannot change ownership to uid 1001, gid 1001: Invalid argument
tar: apache-karaf-4.2.9/etc/scripts: Cannot change ownership to uid 1001, gid 1001: Invalid argument
tar: apache-karaf-4.2.9/etc/jmx.acl.cfg: Cannot change ownership to uid 1001, gid 1001: Invalid argument
tar: apache-karaf-4.2.9/etc/custom.properties: Cannot change ownership to uid 1001, gid 1001: Invalid argument
tar: apache-karaf-4.2.9/etc/profile.cfg: Cannot change ownership to uid 1001, gid 1001: Invalid argument
tar: apache-karaf-4.2.9/etc/org.apache.karaf.features.xml: Cannot change ownership to uid 1001, gid 1001: Invalid argument
这只是一小部分,有数百行错误。然而,该特定部分"Cannot change ownership to uid 1001, gid 1001: Invalid argument"
被显示在每一行中。
我能做些什么来解决这个问题?
编辑:我尝试了这里描述的解决方案:https://unix.stackexchange.com/questions/548108/cannot-change-ownership-to-uid-1001-gid-1001-invalid-argument但没有变化。
尝试在运行tar 的脚本中添加-没有相同的所有者
vim /opt/onos/tools/package/onos-prep-karaf
将第22行更改为:
tar xf $KARAF_TAR --no-same-owner
然后再次运行CCD_ 4s。