일반 사용자에게 루트 권한을 부여하는 방법:
1. 사용자를 추가하려면 먼저 adduser 명령을 사용하여 일반 사용자를 추가합니다.
#adduser tommy //添加一个名为tommy的用户 #passwd tommy //修改密码 Changing password for user tommy. New UNIX password: //在这里输入新密码 Retype new UNIX password: //再次输入新密码 passwd: all authentication tokens updated successfully.
2. /sudoers 파일을 열고 루트 아래에 다음 줄을 추가합니다.
## Allow root to run any commands anywhere root ALL=(ALL) ALL tommy ALL=(ALL) ALL
이제 수정이 완료되었습니다. 이제 tommy 계정으로 로그인한 다음 sudo su - 명령을 사용하여 루트 권한을 얻을 수 있습니다. 작동하다.
추천 튜토리얼: centos 튜토리얼
위 내용은 CentOS에서 일반 사용자에게 루트 권한을 부여하는 방법의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!