평범한 이야기들

[Ubuntu] is not in the sudoers file. This incident will be reported. 에러 처리하기 본문

평범한 개발 이야기/OS

[Ubuntu] is not in the sudoers file. This incident will be reported. 에러 처리하기

songsariya 2021. 1. 22. 14:53
728x90

우분투에서 일반 사용자 계정으로 sudo 명령어를 사용하고자 할 때 에러가 나오는 경우가 있습니다.

"[계정] is not in the sudoers file. This incident will be reported."

해당 계정이 sudo 명령어를 통한 root 권한을 얻을 수 있는 계정이 아니기 때문입니다.

 

해결방법

먼저 root로 접속을 합니다. ( 또는 root 권한을 가지고 있는 다른 계정을 이용하시면 됩니다.)

 

$ vim /etc/sudoers

 

해당 파일의 중간 부분에 아래와 같이 있습니다.

 

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

해당 부분 바로 아래 root처럼 사용자 계정에 권한을 주시면 됩니다.

 

# User privilege specification
root    ALL=(ALL:ALL) ALL
(사용자계정) ALL=(ALL:ALL) ALL

수정을 한 후에 파일을 저장을 하시면 됩니다. 그리고 해당 사용자 계정으로 sudo 명령어를 사용하시면 root 권한이 부여된 것을 확인할 수 있습니다.

728x90
Comments