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 testuser<br /><br /> #-m creates a home directory for the user.<br /><br /><br /> Step 2: Set password for the user:-<br /><br /> passwd testuser<br /><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 testuser<br /><br /> # -a means add<br /><br /> #-G sudo means to add the user to sudoers group<br /><br /><br /> Step 4: Now, we have to specify the shell for our new user.<br /><br /> chsh -s /bin/bash testuser<br /><br /> # chsh means change login shell<br /><br /> # -s means, it is the name of the shell you want for the user, in this case /bin/bash<br /><br /><br />It's done<br /><br /><br />Thanks for watching, please like and subscribe <br /><br />==============================================<br /><br />https://www.facebook.com/HowtoTutorialsByAmit/