ユーザーに割り当てられたsubuidとsubgidの値をリストするツール(!)はありますか?
usermod -v(--add-sub-uids)およびusermod -w(--add-sub-gids)を使用して、ユーザーアカウントのsubuidおよびsubgidの範囲を操作できますが、それらを単に一覧表示できるツールはないようです。あるの? 少なくとも私のUbuntu 14.04ボックスでgetentは、/etc/subuidとからの情報を処理する準備ができていないようです/etc/subgid。 現在、私はawk目的のために使用している小さなシェルスクリプトを使用しています。 ここからの抜粋ですusermod(8): -v, --add-sub-uids FIRST-LAST Add a range of subordinate uids to the users account. [...] -V, --del-sub-uids FIRST-LAST Remove a range of subordinate uids from the users account. [...] -w, --add-sub-gids FIRST-LAST Add a range of subordinate gids to the users account. [...] -W, …