Questions tagged «chown»


13
归档时“命令/ usr / sbin / chown失败,退出代码为1”
我正在尝试为iPhone归档我的第一个iOS 4.3应用程序,并且我经常遇到此错误: Command /usr/sbin/chown failed with exit code 1 我在各个论坛中进行搜索,尝试使用诸如更改“备用安装组”(我不知道要更改为什么)以及打开“跳过安装”之类的解决方案。
85 ios  xcode  chown 

5
为什么chown在Dockerfile中不起作用?
我的Dockerfile创建一个目录,将其chown,然后再列出该目录。该目录仍归root用户所有。这是为什么? 这是Dockerfile: FROM ubuntu:precise RUN useradd -d /home/testuser -m -s /bin/bash testuser RUN mkdir -p /var/local/testrunner/logs VOLUME ["/var/local/testrunner/logs"] RUN grep testuser /etc/passwd RUN grep root /etc/passwd RUN chown -R testuser:testuser /var/local/testrunner/logs RUN ls -ld /var/local/testrunner/logs 这是“ docker build”的输出: Sending build context to Docker daemon 10.24 kB Sending build context to …
84 docker  chown 
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.