简单的场景是这样的;在本教程中:
podman
不使用sudo
- 更新#1 ...问题似乎与在Ubuntu
cgroups2
上正确激活有关。
bash
在不需要 root/sudo
权限的情况下在 Ubuntu 容器中运行。命令行是:
podman run --rm --interactive --tty ubuntu bash
此命令带来以下结果:
$ podman run --rm --interactive --tty ubuntu:20.10 bash
Completed short name "ubuntu" with unqualified-search registries (origin: /etc/containers/registries.conf)
Trying to pull docker.io/library/ubuntu:20.10...
Getting image source signatures
Copying blob 79e7e9027772 done
Copying blob eed86eef5a46 done
Copying blob 1b553362680b done
Copying config deb373a625 done
Writing manifest to image destination
Storing signatures
Error processing tar file(exit status 1): potentially insufficient UIDs or GIDs
available in user namespace (requested 0:42 for /etc/gshadow):
Check /etc/subuid and /etc/subgid: lchown /etc/gshadow: invalid argument
Error: Error committing the finished image: error adding layer with
blob "sha256:eed86eef5a4687135cb1ba7c55da6af79c9182e8bf59b53a880d1b334515c8e3":
Error processing tar file(exit status 1): potentially insufficient UIDs or GIDs
available in user namespace (requested 0:42 for /etc/gshadow): Check /etc/subuid
and /etc/subgid: lchown /etc/gshadow: invalid argument
这使我们相信一些进一步的特权是必要的(可能不是root,但是......)。这已经通过运行相同的命令得到证实——除了图像在我的 PC 上运行时sudo
,它工作得非常愉快。不是我期望的快乐结果。popdman Ubuntu
root
目前这台机器上的/etc/subuid
和/etc/subgid
文件只有少数samba
用户和一个wireshark
用户的条目,如图:
/etc/subgid /etc/subgid
tsmith:100000:65536 tsmith:100000:65536
demo:165536:65536 demo:165536:65536
smbguest:231072:65536 smbguest:231072:65536
wireshark:296608:65536 wireshark:296608:65536
在这一点上我真的没有指导。我意识到我需要使用subuid
-s 和subgid
-s 来完成这个示例。到目前为止,我还没有找到一些关于需要什么的提示或文档。除了不直接编辑文件——足够公平。
同样在上面提到的教程中,是一个sudo
查看subuid
-s 的非示例:
$ podman unshare cat /proc/self/uid_map
0 1000 1
1 100000 65536
我问自己,用户 #1 只是一个例子还是我错过了一步?当我在这台电脑上做同样的事情时,我看到的是:
$ podman unshare cat /proc/self/uid_map
0 1000 1
没有用户#1,只有用户#0。我要采取什么行动?现在的问题是:
- 如何让 Ubuntu
bash
shell 在容器中无根运行?- 最小的变化就足以看到
bash
无根运行。
- 最小的变化就足以看到
- 我从哪说起呢?
- 我需要做什么?
- 我该怎么做?