We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
If you create a container like:
SHELL=/usr/bin/zsh distrobox create -i alpine:latest -n test
and do a
distrobox enter test
You'll get an:
Error: executable file /usr/bin/zsh not found in $PATH: No such file or directory: OCI runtime attempted to invoke a command that was not found
Error: executable file
not found in $PATH: No such file or directory: OCI runtime attempted to invoke a command that was not found
That is because alpine puts it in /bin/zsh, so let's find a way to make it work
/bin/zsh
The text was updated successfully, but these errors were encountered:
abf73bf
Something similar to this is happening for me on distrobox v1.4.0:
distrobox create --root --image alpine:edge
Then entering with:
distrobox enter --root alpine-edge
produces the following error message:
sh: /usr/bin/zsh: not found An error occurred An error occurred
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
If you create a container like:
SHELL=/usr/bin/zsh distrobox create -i alpine:latest -n test
and do a
distrobox enter test
You'll get an:
Error: executable file
/usr/bin/zshnot found in $PATH: No such file or directory: OCI runtime attempted to invoke a command that was not found
That is because alpine puts it in
/bin/zsh
, so let's find a way to make it workThe text was updated successfully, but these errors were encountered: