How to Create a New User with sudo Permission in Kali Linux?

How to Create a New User with sudo Permission in Kali Linux?

How to Create a New User with sudo Permission in Kali Linux?br br First, Right click on the Desktop, and then click on 'Open in Terminal' to Open Terminal. After that, follow the steps below:-br br Step 1: Create a New Normal User by command below:-br br useradd -m testuserbr br #-m creates a home directory for the user.br br br Step 2: Set password for the user:-br br passwd testuserbr br br Step 3: Now, Add user to sudo group (This allows user to install software, use the printer etc.)br br usermod -a -G sudo testuserbr br # -a means addbr br #-G sudo means to add the user to sudoers groupbr br br Step 4: Now, we have to specify the shell for our new user.


User: TechTips

Views: 10

Uploaded: 2019-06-06

Duration: 05:16