ユーザーパスワードを変更するとsudoパスワードも変更されますか?

ユーザーパスワードを変更するとsudoパスワードも変更されますか?

私はLinux Mintシステムの唯一のユーザーですが、私がログインするために選択したパスワードが私に割り当てられたパスワードと同じであることがわかりましたsudo

私の質問は:ログインパスワードを変更するとsudoパスワードも変更されますか?

sudoそうでない場合は、パスワードをどのように変更しますか?

答え1

デフォルトでは、以下がsudo必要です。ユーザーパスワード。したがって、ユーザーのパスワード(ログインにも使用されます)を変更すると、sudo呼び出しにも影響します。

/etc/sudoersただし、ユーザーにフラグを設定することができます。rootpwこの場合、rootパスワードの入力を求められます。

関連抜粋sudoers(5) のマニュアルページ例:

Authentication and logging
 The sudoers security policy requires that most users authenticate them‐
 selves before they can use sudo.  A password is not required if the
 invoking user is root, if the target user is the same as the invoking
 user, or if the policy has disabled authentication for the user or com‐
 mand.  Unlike su(1), when sudoers requires authentication, it validates
 the invoking user's credentials, not the target user's (or root's) cre‐
 dentials.  This can be changed via the rootpw, targetpw and runaspw
 flags, described later.

同様に、キーワードはいいえsudoを要求するパスワードはパスワードなしWD

ルートパスワードを設定するには、次のものを使用できます。sudo passwd

sudo -ssudo権限を変更するときは、他の端末で実際に機能しているかどうか、ロックされていないことを確認するまでrootコンソールを開いておくことをお勧めします(例:)。

答え2

sudoパスワード自体はありません。ユーザーはグループに属してコマンドsudoを実行できますが、sudo各ユーザーには1つのパスワードしかありません。変更すると、特定のアプリケーションではなくユーザーに対して変更されます。

別の同様の誤解は、ルートパスワードがsudoingで使用されたパスワードと同じであることです。いいえ、他のパスワードに関連付けられていない個人パスワードを持つ単一のユーザー。

答え3

はい、ログインとsudo同じ「パスワードデータベース」(通常は小規模システムで使用されています)を使用してください。/etc/shadow

関連情報