ERROR: mkdir '/dev/null/.distcc' failed: Not a directory #72
-
I entered the docker container to find the issue why client can't distribute to the host. What I saw is this, and maybe it is the culprit? I'm not sure, I'm just desperate |
Beta Was this translation helpful? Give feedback.
Replies: 7 comments
-
Beta Was this translation helpful? Give feedback.
-
Beta Was this translation helpful? Give feedback.
-
The default user for the |
Beta Was this translation helpful? Give feedback.
-
How can I install GCC 14.2 on your container? I need sync with compiler of my client PC |
Beta Was this translation helpful? Give feedback.
-
Only the stable Gentoo tool-chain is currently supported out of the box, you'd have to build your own image if you are interested in different versions, by emerging the appropriate ebuilds. |
Beta Was this translation helpful? Give feedback.
-
How do I change GCC in your container? Gentoo Wiki way wouldn't work? |
Beta Was this translation helpful? Give feedback.
-
The container is not a fully functional Gentoo installation, you'll hit various such issues along the way. The issue above is caused because the portage tree is not checked out by default inside the container. You should consult the Gentoo forum for Gentoo-related questions such as upgrading the system compiler and the repo's Dockerfile for container-related questions. If you are not familiar with Gentoo or Docker, this won't be a trivial process! |
Beta Was this translation helpful? Give feedback.
The default user for the
tcp
image isdistcc
, which has no home directory. Try usingdocker exec -itu root gentoo-distcc-tcp bash
, to debug the container as root instead, or you'll be limited to the privileges of thedistcc
user.