Debian 10에서는 sudo를 사용할 수 없습니다.

Debian 10에서는 sudo를 사용할 수 없습니다.

AMD 프로세서가 탑재된 Dell Inspiron에 Debian 10을 설치했습니다. KDE 플라즈마 데스크탑을 사용하고 있습니다. 내가 시도할 때

sudo dpkg  -i ./palemoon_28.6.1+repack-2_amd64.deb

알겠어요

[sudo] password for peter: 
peter is not in the sudoers file.  This incident will be reported.

저는 루트로 로그인해서 들어갔습니다.

/usr/sbin/adduser peter

이 반환

adduser: 사용자 "peter"가 이미 존재합니다.

그런 다음 루트로 다음을 시도했습니다.

chmod 0440 /etc/sudoers

sudo를 시도하면 Peter의 계정에 여전히

peter is not in the sudoers file.  This incident will be reported.

그런 다음 루트로 다음을 시도했습니다.

sudo usermod -aG sudo,adm peter

Peter의 계정에서 sudo를 시도해도 여전히 동일한 결과가 나타납니다.

Peter의 계정에 대한 새 터미널을 열어도 아무 것도 변경되지 않습니다.

편집하다

cat /etc/sudoers
root@debian:/home/peter/Downloads# cat /etc/sudoers
#
# This file MUST be edited with the 'visudo' command as root.
#
# Please consider adding local content in /etc/sudoers.d/ instead of
# directly modifying this file.
#
# See the man page for details on how to write a sudoers file.
#
Defaults        env_reset
Defaults        mail_badpass
Defaults        secure_path="/usr/local/sbin:/usr/local/bin:/usr/sbin:    /usr/bin:/sbin:/bin"

# Host alias specification

# User alias specification

# Cmnd alias specification

# User privilege specification
root    ALL=(ALL:ALL) ALL

# Allow members of group sudo to execute any command
%sudo   ALL=(ALL:ALL) ALL

# See sudoers(5) for more information on "#include" directives:

#includedir /etc/sudoers.d


root@debian:/home/peter/Downloads# id peter
uid=1000(peter) gid=1000(peter)   groups=1000(peter),4(adm),24(cdrom),25(floppy),27(sudo),29(audio),30(dip),44(video),46(plugdev),109(netdev),112(bluetooth),116(lpadmin),117(scanner)

답변1

루트로서 파일을 만들었습니다.

vi /etc/sudoers.d/peter

그리고 추가됨

peter    ALL=(ALL:ALL) ALL

이제 Peter의 계정에서 sudo를 실행할 수 있습니다.

관련 정보