Unfortunately on mobile the zoom is fixed (I can't zoom out, didn't know that was possible) and I can't see the left and right edges of the text.
Introduction to runc
21–30 of 32 posts
Re: Introduction to runc
#22In addition to runc, I'd like to point out an alternative OCI runtime implementation, crun ( https://github.com/containers/crun ). You can play with both either directly, or through Podman ( https://podman.io/ ) Useful for cgroups v2 too.
The really weird thing about this is that latest Fedora (by Red Hat, as is crun) doesn't even support cgroups v2. Or I couldn't figure out how to get it working. I had to disable v2 and go back to v1 and use runc.
In runtime, you should see the following:
mount | grep cgroup cgroup2 on /sys/fs/cgroup type cgroup2 (rw,nosuid,nodev,noexec,relatime,nsdelegate)
btw, I use Arch (yeah I know, the standard adage)
Re: Introduction to runc
#23Re: Introduction to runc
#24Unfortunately on mobile the zoom is fixed (I can't zoom out, didn't know that was possible) and I can't see the left and right edges of the text.
I hate when they do that. Here is a bookmarklet that will fix those pages: javascript:document.querySelector('meta[name=viewport]').setAttribute('content','width=device-width,initial-scale=1.0,maximum-scale=10.0,user-scalable=1'); The real fix is of course to complain to the page author.
Re: Introduction to runc
#25In addition to runc, I'd like to point out an alternative OCI runtime implementation, crun ( https://github.com/containers/crun ). You can play with both either directly, or through Podman ( https://podman.io/ ) Useful for cgroups v2 too.
Not sure why I would want a lot of new C on my machine, unless I was pressed for storage or RAM. Which I am not. runc is like 5MB, which is pretty small for a Go binary.
Re: Introduction to runc
#26Re: Introduction to runc
#27Earlier quoted context omitted.
I hate when they do that. Here is a bookmarklet that will fix those pages: javascript:document.querySelector('meta[name=viewport]').setAttribute('content','width=device-width,initial-scale=1.0,maximum-scale=10.0,user-scalable=1'); The real fix is of course to complain to the page author.
Reader mode on Firefox does a great job too!
Re: Introduction to runc
#28In addition to runc, I'd like to point out an alternative OCI runtime implementation, crun ( https://github.com/containers/crun ). You can play with both either directly, or through Podman ( https://podman.io/ ) Useful for cgroups v2 too.
There is also a rust implementation that I wrote in my time at Oracle. Unfortunately they no longer maintain it, but there is a fork with some more recent updates: https://github.com/drahnr/railcar
Re: Introduction to runc
#29In addition to runc, I'd like to point out an alternative OCI runtime implementation, crun ( https://github.com/containers/crun ). You can play with both either directly, or through Podman ( https://podman.io/ ) Useful for cgroups v2 too.
Pretty sure runc supports cgroups2 these days. Not sure why I would want a lot of new C on my machine, unless I was pressed for storage or RAM. Which I am not. runc is like 5MB, which is pretty small for a Go binary.
Also `runc` has quite a lot of C in it anyways. The go runtime makes many things very complicated or even impossible.