본문 바로가기

[Linux] 유저에게 sudo 권한 주기 - is not in the sudoers file. this incident will be reported

곰곰킴 2021. 6. 30.

개요

linux에서 sudo 명령에서 ...is not in the sudoers file. this incident will be reporte오류가 날 때 유저에게 sudo 권한을 주며 해결하는 방법을 알아보자.

방법

1. root계정으로 로그인한다.

2. sudo권한을 다루는 문서를 연다.

# vi /etc/sudoers
반응형

3. root ALL=(ALL:ALL) ALL 부분을 찾는다.

해당 부분 밑에

(유저 이름) ALL=(ALL:ALL) ALL를 작성한 후 저장한다.

:wq로 저장할 때 readonly option is set오류가 나왔다면 아래의 게시글을 확인한다.

2021.06.30 - [Linux] - [Linux] readonly option is set (add to override) 오류

 

[Linux] readonly option is set (add to override) 오류

개요 vi 명령어로 편집 후 :wq 로 저장할 때 readonly option is set (add to override) 오류가 떴다. read only파일이였기 때문이다. 해결 read only파일 같은 경우에는 저장할 때 :w! 를 사용해야 한다. :w! =>..

gomgomkim.tistory.com

 

4. 해당 계정으로 로그인하여 sudo소스를 작성하여 적용을 확인한다.

댓글