that gets to the root (har har) of my confusion here. am i missing the point of MicroOS, or is it the devs who are wrong? đ
their INTENTION with MicroOS is for us to just use root, which is contrary to how i've lived Linux basically forever.
Podmans rootless containers are AWESOME on Aeon, where youâre using it interactively and already have none root users.. but that would just be adding unnecessary complications to MicroOS
MicroOS is designed to use with root, and there is no need to create a non root user for anything.
IF there was a need to create a non root user then the installer would create a non-root user
which is exactly what was tripping me up. why weren't they facilitating rootless activity, and thus making me jump through hoops to get there.
answer: because it's not needed, and not the intention.
MicroOS: run as root.
edit Answer
yes, MicroOS only generates a root user at install.
if you want to do rootless containers, you will need to create new, non-root users after.
useradd will NOT generate entries for subuid/subgid by default for the new SYSTEM users.
if the system user already exists, you will need to add them manually:
I don't run MicroOS myself so take this with a grain of salt. But this is usually how I do it, though there might be a better practice out there for this too.
Afaik, MicroOS by the sound of it, only ships with root by default, but rootless Podman should definitely be possible.
Normally, you need to set up user namespace mappings for your non-root user. Run these commands as root:
This should give your regular user the ability to map container UIDs without needing root privileges. After that, Podman should work fine as your regular user.
it does, thanks! i'm mostly really surprised that MicroOS hasn't prepared all of this ahead of time for something that's supposed to be a "ready for podman containers" install.
This is what the Aeon maintainer said about root vs rootless in MicroOS:
Since MicroOS is immutable and not meant to be changed then thereâs no problem running everything as root; root canât even write to the immutable parts of the OS
The main benefits for Podman on MicroOS are very many while not including rootless. No daemon to crash and make containers unmanageable. Nicer dependency chain making it easier to keep up to date on TW. Support for kubes.. and many more
While this would not answer your question, but according to podman maintainers, rootful podman with userns=auto enjoys nearly as much security benefits as rootless. (As always, there are nuances to this)
thanks, very helpful! your comment is definitely relevant, and i hope this topic will help others in the future who may be confused about best practice w/ MicroOS.
for what it's worth, i did end up running Rootful!
Rootful podman with podman run --userns=auto is more secure than one rootless host user running many pods, because those pods could (theoretically) attack each other. though you still have the possibility of an exploit in the image pull
Rootless podman running one pod (as in service including database and so on) per host user with different subuid Ranges is the most secure, but you have to actually set that up which can be a lot of work depending on distribution.
I do this on the minimal Debian release which is essentially coming from the same place, you're left to get things configured with a root user or maybe a privileged user after install. There's a few things to tweak for rootless podman and it will vary based on the distro. The gist for me and Debian is:
make an unprivileged account for running podman containers
enable linger so i can use systemd with this account and the running of the containers
allow lower ports for podman rootless in sysctl (for example, 80 if you're running basic http services rootless), net.ipv4.ip_unprivileged_port_start=<start of lower range of ports rootless containers will use>
run containers with the appropriate --userns flags. This can vary a lot depending on the container. Some maintainers are nice and ensure the internal uid/gid is something expected like 1000, sometimes not and you have to fire it up and figure out the app account name, uid/gid. An example I'll put here is a podman run snippet for running jenkins (official image from cloudbees) rootless:
podman run --name jenkins --user jenkins --userns=keep-id:uid=1000,gid=1000 ...
Again, that's just Debian, never tried MicroOS, but if MicroOS isn't doing anything special to accommodate rootless podman I imagine these steps are somewhat applicable. One issue I ran into was with an older version of Podman, whatever comes with Ubuntu 22: That version of podman requires you to set the namespace mappings; Debian 12's version does not and the --userns=keep... flag just works.
Honestly I'm not sure, or maybe I knew but forgot. Since working out my needs I wrote it to ansible and never looked back. Worth trying the more secure way for sure.
i try to make a new non-root user, but podman just keeps complaining about privileges when i run it under that user.
If you're asking for help about an error message, then provide the error message rather than describing it in vague terms. There are many privileges it could be complaining about.
not at this time, thank you. it's more about confirming how MicroOS is functioning with a fresh install and where i need to head from there for rootless functionality. why this isn't the default setup, i don't know.
i've been ass-deep in doc and guides for days, mate. can you just answer the question if you know the answer?
rootless podman should not be able to bind to port 80, for example. but i CAN do this on MicroOS. which is making me think that it's running rootful. and if that's happening because i'm working under the sole root user in MicroOS.
Which user do you use to run the podman command? Confirm with whoami
Note that the sysctl net.ipv4.ip_unprivileged_port_start can be used to allow non-root users to bind to ports <1024, this might be configured in MicroOS, I don't know.