내가 추가한 사용자로 sudo를 사용할 수 없습니다.

내가 추가한 사용자로 sudo를 사용할 수 없습니다.

새 사용자 추가

useradd -m -p 12345 -s /bin/bash -G wheel tom

사용자를 루트에서 톰으로 전환

su tom

올바른 비밀번호를 입력해도 Tom은 sudo를 사용할 수 없습니다.

We trust you have received the usual lecture from the local System
Administrator. It usually boils down to these three things:

    #1) Respect the privacy of others.
    #2) Think before you type.
    #3) With great power comes great responsibility.

여기에 이미지 설명을 입력하세요.

/etc/sudoers
%wheel (ALL)=(ALL) ALL

/etc/pam.s/su uncommented
auth required pam_wheel.so

$ groups
tom wheel

답변1

에서 man useradd (8):

-p, --password PASSWORD
     암호화된 비밀번호, crypt(3)에 의해 반환됩니다. 기본값은 비밀번호를 비활성화하는 것입니다.

조사하면 /etc/shadow찾을 수 있을 것이다암호화됨비밀번호는 입니다 12345. 따라서 비밀번호가 틀리는 것은 놀라운 일이 아닙니다.

루트 ID를 사용하여 비밀번호를 변경할 수 있습니다.

passwd tom

작동해야합니다.

관련 정보