Toolbox package in official repository

I installed toolbox from manjaro repo:
sudo pacman -S toolbox

but having issue in starting:
~ >>> toolbox create
Error: /etc/subgid and /etc/subuid don’t have entries for user
See the podman(1), subgid(5), subuid(5) and usermod(8) manuals for more
information.

Help!

It’s already telling you what the problem is and how to get information about it.
You can also take a look here: Podman - ArchWiki

I already tried it , facing issues in finding subgid and subuid file in /etc.
Do I have to create it?

1)you have to create both subuid and subgid in /etc .

2)podman system migrate

3)toolbox create works

Thanks.

Yes you have to. Assuming your username is bearbobs they could look like this:

$ cat /etc/subgid
bearbobs:100000:65536
$ cat /etc/subuid
bearbobs:100000:65536
1 Like

Thanks.

This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.