About 721,000 results
Open links in new tab
  1. Docker COPY recursive --chmod --chown - Stack Overflow

    Aug 25, 2022 · I am trying to recursively copy some files and directories into a Docker image. The source directory contains files and a sub-directory with some files in it. src/ ├─ subdir/ │ ├─ …

  2. What are the proper chown and chmod syntax? - Ask Ubuntu

    Jan 19, 2021 · What are the proper chown and chmod syntax? Ask Question Asked 4 years, 10 months ago Modified 4 years, 10 months ago

  3. How can I change the owner of a file in Windows (command line)

    Sep 23, 2022 · I am working in Windows with a non-admin-account. Sometimes I have files which I am not allowed to write. These files are from another user with admin rights which I use to install …

  4. Changing Ownership: "Operation not permitted" - even as root!

    Sep 17, 2015 · 89 I am trying to help a user solve an issue with a bootable USB drive, but there seems to be a file whose ownership cannot be edited. I thought it would have been possible with: sudo …

  5. chown in dockerfile: What does string after '--chown=' mean?

    Aug 17, 2023 · I understand ADD is used for copying files in container. chown is linux way of changing file ownership. What does the x and y (represented as placeholders here) mean?

  6. chown - file owner cannot chmod file, report operation not permitted ...

    Oct 28, 2016 · use root copy or create a file a.out chown user:user a.out, change a.out owner to user now change to user, su user use user to chmod a.out, chmod 755 a.out Ok, problem is here. step 4 …

  7. filesystem - CHOWN: What does "id -u" represent - Ask Ubuntu

    chown: invalid user: 'id -u' I am new to Linux, so what I don't understand is what the 'id -u' was supposed to mean. When I replace with my user name the command completes just fine and mongo runs. Can …

  8. Docker and Postgresql with mounted (local): chown: changing …

    Oct 1, 2024 · The obvious question is what the ownership/permissions are on /custom/mount and on /custom/mount/pgdata. Also whether this is mounted from the Mac itself or from the linux VM that …

  9. chown: invalid user: ‘user:group’ - Ask Ubuntu

    Sep 30, 2022 · 0 You have to actually put in your user name and group name - eg sudo chown pt:pt /usr/lib/libcastle Changes the owner of that file to pt and the group also to pt.

  10. Docker - executing mkdir, chown & chgrp after the container is up

    This allows me to do what I need to (create a mounted volume in my docker-compose.yml to the local filesystem, then use the entrypoint.sh to create and chown + chmod a directory inside that mount …