Linux/Unix Power Tools 리눅스 커맨드 라인(linux command line) 명령어 사용법 Current: RHEL/CentOS sudo 명령어 가능하게 하기 RHEL/CentOS sudo 명령어 가능하게 하기 RHEL 계열은 기본적으로 일반 사용자는 sudo 명령어 사용 권한이 없지만 다음 방법으로 사용 가능합니다.wheel 그룹에 등록wheel 그룹에 등록 usermod -aG wheel lesstif BASH sudoers 파일 오픈 vi /etc/sudoers BASH 다음 내용 주석 제거 ## Allows people in group wheel to run all commands %wheel ALL=(ALL) ALL BASH 저장한 후에 다음 명령어로 파일 이상 유무 테스트 visudo -cf /etc/sudoers /etc/sudoers: parsed OK BASH sudo 실행할 계정으로 다시 로그인후에 sudo 테스트 sudo ls BASH 계정 직접 등록visudo 명령어로 /etc/sudoers 파일 오픈 visudo BASH 다음 내용 추가 lesstif ALL=(ALL) ALL BASH 저장Refhttps://www.digitalocean.com/community/tutorials/how-to-create-a-sudo-user-on-centos-quickstart ×