[Linux] 리눅스 일반 사용자 root 권한 부여 방법
리눅스 일반 사용자 root 권한 부여 방법입니다. ‘testid’라는 계정을 임시로 만들었습니다.
✅ 리눅스 일반 사용자 root 권한 부여하기
1. /etc/sudoers
vi /etc/sudoers
Defaults secure_path = /sbin:/bin:/usr/sbin:/usr/bin
## Next comes the main part: which users can run what software on
## which machines (the sudoers file can be shared between multiple
## systems).
## Syntax:
##
## user MACHINE=COMMANDS
##
## The COMMANDS section may have other options added to it.
##
## Allow root to run any commands anywhere
root ALL=(ALL) ALL
testid ALL=(ALL) ALL
## Allows members of the 'sys' group to run networking, software,
## service management apps and more.
# %sys ALL = NETWORKING, SOFTWARE, SERVICES, STORAGE, DELEGATING, PROCESSES, LOCATE, DRIVERS
## Allows people in group wheel to run all commands
%wheel ALL=(ALL) ALL
2. /etc/passwd 수정
vi /etc/passwd
3. /etc/group 수정
vi /etc/group
root:x:0:
bin:x:1:
daemon:x:2:
✅ 최종 확인
정상적으로 권한이 부여 되었는지 확인 해 봅니다.
su - testid
passwd:
~]#