Linux에서 사용자를 추가하고 루트 권한을 부여하는 방법은 무엇입니까?
Linux에서 사용자를 추가하고 루트 권한을 부여하는 방법:
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. 루트 권한 부여
#🎜🎜 #방법 1 :/etc/sudoers 파일을 수정하고, 다음 줄을 찾아 이전 주석을 제거합니다(#)
## Allows people in group wheel to run all commands %wheel ALL=(ALL) ALL
#usermod -g root tommy
이제 tommy 계정으로 로그인한 후 su – 명령을 사용하여 작업을 위한 루트 권한을 얻을 수 있습니다. .
방법 2:/etc/sudoers 파일을 수정하고, 다음 줄을 찾아 루트 아래에 다음과 같이 줄을 추가합니다. ## Allow root to run any commands anywhere
root ALL=(ALL) ALL
tommy ALL=(ALL) ALL
방법 3:
/etc/passwd 파일을 수정하고, 다음 줄을 찾아 아래와 같이 사용자 ID를 0으로 변경합니다.tommy:x:0:33:tommy:/data/webroot:/bin/bash
위 내용은 Linux에서 사용자를 추가하고 루트 권한을 부여하는 방법의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!