[Linux] 유저에게 sudo 권한 주기 - is not in the sudoers file. this incident will be reported
개요
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) 오류
4. 해당 계정으로 로그인하여 sudo소스를 작성하여 적용을 확인한다.
'Linux' 카테고리의 다른 글
[Linux] y/n 의 대문자와 소문자 (0) | 2021.07.06 |
---|---|
[Linux] changing a readonly file 해결 방법 (0) | 2021.07.05 |
[Linux] 리눅스 운영체제 버전 확인 방법 (0) | 2021.06.30 |
[Linux] 리눅스에 FTP 서버 설치하기 (0) | 2021.06.30 |
[Linux] readonly option is set (add to override) 오류 (0) | 2021.06.30 |
댓글