web-dev-qa-db-ja.com

システムアカウント「useradd -r」Linux Fedora / RHEL / CentOSの作成の影響

-rオプションを使用してアカウントを作成する意味は何ですか?

# useradd -r ...

ヘルプは言う:

-r, --system
  Create a system account.

  System users will be created with no aging information in /etc/shadow, and their 
  numeric identifiers are chosen in the SYS_UID_MIN-SYS_UID_MAX range, defined in
  /etc/login.defs, instead of UID_MIN-UID_MAX (and their GID counterparts for the
  creation of groups).

  Note that useradd will not create a home directory for such an user, regardless
  of the default setting in /etc/login.defs (CREATE_HOME). You have to specify the
  -m options if you want a home directory for a system account to be created.

ただし、uidgid、およびgroups

質問1どのファイルが影響を受けますか?

質問2このタイプのシステムアカウントが提供する追加のパフォーマンスは何ですか?

質問送信を無視または停止する動作は何ですか?

質問4「-r」オプションで作成されたアカウントを、そのオプションなしで作成されたかのようにアカウントに変更できますか?

12
QA_Col

現在の seraddのソース を見ると、-rが指定されています:

  • 下位のuid/gid機能が無効になっています
  • メールディレクトリは作成されません

したがって、通常のユーザーアカウントと大きな違いはありません。確かに、自動パフォーマンスの向上または損失はありません。 Q1とQ3の意味がわかりません。第4四半期については、技術的にはそうです。ただし、これにはユーザーIDの変更が含まれるため、以前のUIDが所有していたファイルはすべて新しいファイルにchownedする必要があります。

4
sendmoreinfo