Skip to content

Running Bootable ISO as Image gives CRUN OCI Permission Denied #24428

Answered by eriksjolund
zak-admin asked this question in Q&A
Discussion options

You must be logged in to vote

It looks like there is no command specified in the container image.

CMD and/or ENTRYPOINT can be set with the podman import option --change

The man page has some examples

https://docs.podman.io/en/stable/markdown/podman-import.1.html#examples

Instead of configuring those instructions in the container image, you could also specify the command directly on the command-line after the imagename:

For example

podman run --rm truenas/1:latest /bin/true
podman run --rm truenas/1:latest /bin/echo hello

If there is a /bin/sh in the container, you could open a shell with the command

podman run --rm -ti truenas/1:latest /bin/sh

to see what's inside.

Maybe there is a systemd system manager that need…

Replies: 1 comment 2 replies

Comment options

You must be logged in to vote
2 replies
@zak-admin
Comment options

@eriksjolund
Comment options

Answer selected by zak-admin
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
2 participants