19
submitted 1 month ago* (last edited 1 month ago) by nico198x@europe.pub to c/selfhosted@lemmy.world

edit 2 Addendum

OK, big thanks to @oakcroissant@feddit.org for bringing this to attention here: https://europe.pub/post/390395/686949

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:

usermod --add-subuids 100000-165535 <yourusername>
usermod --add-subgids 100000-165535 <yourusername>

otherwise, you must use the -F flag with useradd to generate subids for new system users.

thanks all!


hey all! i need a little help here.

i'm just starting to get into self-hosting, and have chosen MicroOS and podman as my environment and tool.

would someone be able to clarify something for me?

I have a MicroOS install for containers, and it seems to only come with a root user. so if i use podman, won't all my pods be rootful?

i try to make a new non-root user, but podman just keeps complaining about privileges when i run it under that user.

so how is this intended to work exactly?

thanks for any help!

all 19 comments
sorted by: hot top controversial new old
[-] Sunny@slrpnk.net 5 points 1 month ago

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:

usermod --add-subuids 100000-165535 <yourusername>
usermod --add-subgids 100000-165535 <yourusername>

Then check they're set up with:

grep <yourusername> /etc/subuid
grep <yourusername> /etc/subgid

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.

Hope this helps a little 👍

[-] nico198x@europe.pub 1 points 1 month ago

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.

[-] oakcroissant@feddit.org 4 points 1 month ago* (last edited 1 month ago)

This is what the Aeon maintainer said about root vs rootless in MicroOS:

  1. 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
  2. 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

Source thread (Reddit)

Edit: spelling

[-] nico198x@europe.pub 1 points 1 month ago

that's great, thanks for sharing! yeah, i love to hear their thoughts on this, since i'm new to ALL of this, immutables and containers. so i want to hear what their design intention is.

[-] Getting6409@lemm.ee 3 points 1 month ago

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:

  1. make an unprivileged account for running podman containers
  2. enable linger so i can use systemd with this account and the running of the containers
  3. 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>
  4. 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.

[-] nico198x@europe.pub 3 points 1 month ago

fantastic, thank you!

yeah, when they said it was "ready for podman" i, uh, expected a little more preconfig. XD

as an aside, re: point 3, port forwarding won't work in firewalld? like , 80->8080, then 8080->container?

[-] Getting6409@lemm.ee 2 points 1 month ago

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.

[-] atzanteol@sh.itjust.works 2 points 1 month ago

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.

[-] nico198x@europe.pub 1 points 1 month ago

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.

[-] someacnt@sh.itjust.works 1 points 1 month ago

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)

Check out https://github.com/containers/podman/discussions/13728

Maybe you could consider running rootful podman, especially if the OS is immutable.

[-] Shimitar@downonthestreet.eu -2 points 1 month ago

I suggest you read some guides about podman and rootless containers.

Here is my experience albeit on a different Linux: https://wiki.gardiol.org/doku.php?id=gentoo%3Acontainers

[-] nico198x@europe.pub 1 points 1 month ago

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.

[-] Shimitar@downonthestreet.eu 3 points 1 month ago

You can give podman rootless the power to open ports less than 1024. So no, it can still be rootless.

And yes, for being rootless you must have non root users as well...

So its probably root and not rootless

[-] nico198x@europe.pub 1 points 1 month ago

thank you for confirming my suspicion. i know one CAN give it that power, but i understand that it's not the default.

ultimately, this is a question first about the MicroOS setup, and second podman functionality.

[-] borax7385@lemmy.world 2 points 1 month ago

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.

[-] nico198x@europe.pub 1 points 1 month ago

i'm definitely root, which is the sole default user on MicroOS for login, bash, etc.

it mostly strikes me as odd that MicroOS for containers would not have me setup a non-root user at install. trying to do it after install necessitates some hoop jumping to get podman to work correctly, which is making me wonder if MicroOS is really worth it at that point if it's not ready to go after install.

[-] driftWood@infosec.pub 1 points 1 month ago

If you want extra users I believe you can create them in ignition file, so that way they get created when MicroOS is deployed.

Basically anything you want as part of 'default' setup has to be configured via ignition file.

[-] nico198x@europe.pub 1 points 1 month ago

yeah, i did try that, but that part failed for some reason. the rest of the Ignition file was ok.

this post was submitted on 02 May 2025
19 points (100.0% liked)

Selfhosted

48320 readers
344 users here now

A place to share alternatives to popular online services that can be self-hosted without giving up privacy or locking you into a service you don't control.

Rules:

  1. Be civil: we're here to support and learn from one another. Insults won't be tolerated. Flame wars are frowned upon.

  2. No spam posting.

  3. Posts have to be centered around self-hosting. There are other communities for discussing hardware or home computing. If it's not obvious why your post topic revolves around selfhosting, please include details to make it clear.

  4. Don't duplicate the full text of your blog or github here. Just post the link for folks to click.

  5. Submission headline should match the article title (don’t cherry-pick information from the title to fit your agenda).

  6. No trolling.

Resources:

Any issues on the community? Report it using the report flag.

Questions? DM the mods!

founded 2 years ago
MODERATORS