우분투 + 새 사용자 계정에 루트 권한 추가

우분투 + 새 사용자 계정에 루트 권한 추가

나는 우분투 버전을 가지고 있습니다 - 12.04

이것은 sudoers 파일입니다

# User privilege specification
root    ALL=(ALL:ALL) ALL

# Members of the admin group may gain root privileges
%admin ALL=(ALL) ALL

# Allow members of group sudo to execute any command
%sudo   ALL=(ALL:ALL) ALL

# See sudoers(5) for more information on "#include" directives:

#includedir /etc/sudoers.d

새 사용자를 만들었습니다 - test_app

%admin 사용자와 동일한 루트 권한을 부여하고 싶습니다.

VIA visudo를 추가하려면 어떤 추가 라인이 필요한지 알려주십시오.

답변1

첫 번째 admin는 사용자가 아닌 그룹으로, %역할을 기준으로 식별할 수 있습니다.

이제 문제에 대해 sudo다음 줄을 파일에 추가하여 사용자에게 전체 권한을 추가할 수 있습니다.test_app

test_app    ALL=(ALL:ALL) ALL

sudo그런 다음 사용자의 콘텐츠를 사용할 수 있습니다.test-app

sudo하지만 sudoers 파일을 변경할 필요가 없도록 사용자를 그룹에 추가하는 것이 좋습니다 .

usermod -a -G sudo test_app

관련 정보