[Linux] 리눅스 일반 사용자 root 권한 부여 방법

리눅스 일반 사용자 root 권한 부여 방법입니다. ‘testid’라는 계정을 임시로 만들었습니다.

✅ 리눅스 일반 사용자 root 권한 부여하기

1. /etc/sudoers

  • /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
  • testid ALL=(ALL) ALL 를 추가해 줍니다.

2. /etc/passwd 수정

vi /etc/passwd
  • testid:x:1000:1000::/home/testid:/bin/bash
  • testid:x:0:0::/home/testid:/bin/bash
  • 권한 부여할 사용자 계정에서 권한을 x:0:0으로 변경 해 줍니다.

3. /etc/group 수정

vi /etc/group

root:x:0:
bin:x:1:
daemon:x:2:
  • root:x:0:
  • root:x:0:testid
  • root 그룹에 사용자 계정(testid)을 추가해서 일반 사용자에게도 root 권한이 부여됩니다.

✅ 최종 확인

정상적으로 권한이 부여 되었는지 확인 해 봅니다.

su - testid
passwd: 
~]# 

Similar Posts