Giuseppe Scrivano

Results 326 comments of Giuseppe Scrivano

did you run `chmod -R 755 /var/lib/mycontainers`?

> [storage.options.overlay] > ignore_chown_errors = "true" > mount_program = "/usr/bin/fuse-overlayfs" > mountopt = "nodev,fsync=0" why are you using fuse-overlayfs? You can use native overlay with additional image stores

I think `pkg-config` should be fine. @phlummox have you tried building crun with `pkg-config`? Have you found any issue?

crun uses automake/autoconf, so if you have the correct libraries installed it is just a matter of running `./autogen.sh && ./configure && make`. More details are in the crun README.md...

@debarshiray it could be given the original report says "toolbox-0.0.99.3-7.fc37.x86_64" and the issue happens on Fedora 37

what are the permissions in `/dev/pts/`? Is the container running with `--mount type=devpts,destination=/dev/pts`?

that seems correct. If I understand correctly though, you would like it to be owned by your ID? I've opened a PR for Podman to allow passing down more options...

`/dev:/dev` will bind mount `/dev/pts` from the host as well, that could make a difference. I don't think it is correct though, could you give a try to the patch...

I wonder if it will be easier for you to just use the OCI runtime to do the exec. e.g. if you do `crun exec` you circumvent podman and conmon,...