앎/linux

[Ubuntu] '*** is not in the sudoers file' 오류 발생 시 처리

후니아부지 2014. 2. 18. 01:16

<username> is not in the sudoers file.  This incident will be reported



sudo 명령을 이용할 때 나타나는 문구이다.



/etc/sudoers 파일을 수정하여 해결한다. 

<username> ALL=(ALL) ALL



다른 방법으로는 


#> echo 'USERNAME ALL=(ALL) ALL' >> /etc/sudoers


모든 명령을 패스워드 입력 없이 사용하도록 허락하는 방법은 다음과 같다.

#> echo 'USERNAME ALL=(ALL) NOPASSWD:ALL' >> /etc/sudoers