• 78 Posts
  • 432 Comments
Joined 1 year ago
cake
Cake day: March 20th, 2024

help-circle


  • 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 👍




  • Does this happen when running the game in fullscreen mode aswell as in bordless? AFAIK, when u launch a game in fullscreen more resources are given to this specific resource/game. Therefore, when trying to switch windows/tabs the system will hang more easily as it takes more computing to load the desktop again.

    Take this with a grain of salt I’m no expert. Would also be interesting to see what specs your computer is running. Personally used to have these sort of issues back when I had games running in an HDD, but since moving to SSDs+new higher specs its not really an issue anymore.