新しくインストールされたシステムでは、UIDは通常次から始まります。1000コマンドを使用して新しいユーザーを作成する場合
useradd dummy
id -u dummy # 1000
-u, --uid
オプションで変更可能
useradd --uid 9000 dummy9000
id -u dummy # 9000
--uid
しかし、uid増分を開始せずに再度ユーザーを作成した場合9000
useradd dum
id -u dum # 9001
リセットするにはどうすればいいですか?ユーザーIDカウンター?
修正する
私は実際に@schilyの提案をテストしましたが、最大値が必要なようです。
答え1
マニュアルページから:
The UID defaults to the next available
(unique) number above the highest number currently
assigned. For example, if UIDs 100, 105, and 200 are
assigned, the next default UID number will be 201.