Home How to How to add remove user (standard user/non-root) in Kali Linux?

How to add remove user (standard user/non-root) in Kali Linux?

by blackMORE

This guide will walk you through on how to add remove user (standard user or non-root user) in Kali Linux. I’ve tested this in Kali Linux, so any Debian or Debian derivative (such as Ubuntu) should just work.

This guide accomplishes:

The main reason I wanted to try this to demonstrate the followings:

  1. Add a user with all user directories already in place (thereby avoiding “Could not update .ICEauthority var/lib/gdm3/.ICEauthority” or any error containing .ICEauthority or permission in general.
  2. Add user to sudo group to allow him to use root commands. You can also add user to ‘lpadmin’ group to allow printing for Canon or HP and such. See Linux printing guide
  3. Change default shell from chsh to bash. Or any shell like Bourne Shell (sh), Bourne-Again Shell (bash), C Shell (csh) or Korn shell (ksh) etc.
  4. Login as that user and demonstrate there were no errors.
  5. Be able to use sudo and show groups affinity.
  6. Delete that user safely.

Benefits of Standard User in Kali:

Few benefits you have as non-root or standard user in Kali

  1. Install and run Google Chrome
  2. Install and run Gnome User and Groups manager (Install gnome-system-tools)
  3. Use Kali as Primary Operating System without worrying about breaking it all the time.

Now let’s move onto actual guide.

Add user in Kali Linux:

  • First of all let’s confirm which version of Linux and Kernel I’m running.In command prompt type in
    uname –a
    lsb_release –a

    How to add remove user - Standard usernon-root - in Kali Linux - blackMORE Ops -1

  • Now let’s add user. Open terminal and type following to create new user (replace user1 with your desired user name)
    useradd -m user1

    How to add remove user - Standard usernon-root - in Kali Linux - blackMORE Ops -2

    (Note: -m means create home directory which is usually /home/username)

  • Now set password for this user
    passwd user1

    Enter desired password twice

    How to add remove user - Standard usernon-root - in Kali Linux - blackMORE Ops -3

  • Add user to sudo group (to allow user to install software, allow printing, use privileged mode etc.)
    usermod -a -G sudo user1

    How to add remove user - Standard usernon-root - in Kali Linux - blackMORE Ops -4

    (Note: -a means append or add and –G mean to specified group/groups)

  • Change default shell of previously created user to bash
    chsh -s /bin/bash user1

    How to add remove user - Standard usernon-root - in Kali Linux - blackMORE Ops -5

    (Note: chsh mean change login shell, -s is the name of the specified shell you want for the user, in this case /bin/bash)

    Nice, all worked out as expected.
    Let’s logout and login back as our new Standard Non-root user (user1)

You may also like

51 comments

tabish143 January 12, 2014 - 11:12 am

so helpful

Reply
admin January 12, 2014 - 11:13 am

Thanks mate. Appreciate it.

Reply
John January 18, 2014 - 11:52 pm

Thank you very much! Was reading some stuff about this ICEAuthority error but this helped me finally! Great Template of the Blog by the way.

John

Reply
admin January 18, 2014 - 11:59 pm

Thanks John. Appreciate it.

Reply
olmc February 13, 2014 - 6:57 pm

Awesome for nebie like me. Nebie question. Why you change default shell?! What for?!

Reply
blackMORE Ops February 13, 2014 - 7:42 pm

Hi olmc,

Thanks. I’m glad you actually picked it up and paid attention to small details.

bash is a superset of sh ie. everything you can do in sh you can do in bash. Bash has more features (branching, builtins, arrays) making script easier to write. I guess Wikipedia can explain better than I can .. http://en.wikipedia.org/wiki/Comparison_of_comput…. You could create another user, skip chsh -s /bin/bash user1 and see how default shell feels like. If you like that, you keep that, else you could always delete that test user.

Reply
Bill November 22, 2017 - 7:50 pm

in my experience doing this caused ALLOOOOOT of problems with path $secure /usr/bin/bash..it did not let me install in root and or sudo user..a complete mess be warned

Reply
Defalt June 12, 2014 - 11:57 am

Is the command sudo su – permenant because it keeps reverting back to user?

Reply
blackMORE Ops June 12, 2014 - 9:18 pm

Hi Defalt,
No, sudo su - is never permanent .. If you want it to be permanent, you MUST login as ROOT user.
-BMO

Reply
Helmi July 17, 2014 - 10:35 pm

I used to log in as root ! but now i’ m standard user !
so how can i import all the system settings and preferences from the old user (root) to this new user ?
and thank you !

Reply
much_hustle August 13, 2014 - 9:35 am

I have been trying to find the same answer as Helmi??? Bump

Reply
blackMORE Ops August 13, 2014 - 4:50 pm

There’s no easy answer to this really. Ideally you should be making changes on /etc/skel/ so that the changes takes affect when a new user is created.
Apart from that, copy all files from User1 to User2 home folder, chmod and chown them. But depending on applications installed and access required, I am afraid you’ll be doing too much work this way. Cheers,
-BMO

Reply
romeo August 14, 2014 - 7:01 pm

great work

Reply
AK Rai August 23, 2014 - 11:34 pm

Very insightful and informative….

THanks

Reply
sarvottamSarvottam patel September 7, 2014 - 12:48 pm

Thank’s to the communities of blackmoreops you are just doing a marvellous job.

Reply
rukt September 10, 2014 - 2:25 pm

I tried to do this just to access chrome, and I think changing the default shell on the new user somehow killed gnome3.

Now when I boot in, I just have a black screen with the cursor as a white watch. I can access the terminal, but can’t seem to get internet access, and nothing I can find anywhere else seems to help.

Any ideas? I tried changing the shell on root between sh and bash, with no luck. Deleting the user, trying to fix the apt-get installs via net but couldn’t connect.

Thank you very much for your guides otherwise though! They’re fantastic.

Reply
Mudit October 15, 2014 - 8:10 pm

Hello admin please help me can u tell me how to switch users in Kali Linux on android

Reply
Rimba December 13, 2014 - 4:56 pm

Hi,
I followed ur steps.. works fine till add to SUDO group. Next when I do the chsh -s /bin/bash username, I get a “enter password” and then authentication failure. (I enter root password. I also tried the username password and no password !) I am working with Kali linux.

Am I missing anything?

Thank you for the time.

Reply
blackMORE Ops December 13, 2014 - 5:09 pm

When you say ‘username’, did you typed in the actual username ( i.e. bob, john) ?

Reply
Zrinko July 15, 2016 - 8:25 am

Would you like will would help me find drivers WiFi builded in

Reply
Kitaickas January 31, 2017 - 7:29 am

Same problem

Reply
chandravijay December 23, 2014 - 4:18 am

plz help
How to remove my login detail from wtmp

Reply
habi January 3, 2015 - 2:06 am

hi
thank you for this great tutorial
but i have i small problem i hope you help me solving it
i can normally log in as root but when i try log in as normal user this message shows up ” could not update iceauthority file /home/habi/.ICEauthority

i tried to remove the file but it didn’t work .
thank you very much.

Reply
Alex Mercer January 4, 2015 - 10:50 pm

How to change the “root” name?

Reply
romansh yadav January 6, 2015 - 4:34 pm

i got a error to create a useradd -m user1 this commd,can not create direcetory home/user1

Reply
john January 16, 2015 - 11:26 pm

Thanks for the great post!

Reply
Sohaib Malik January 22, 2015 - 3:40 am

Awesome
it really works.
i have changed user name by using above commands in recovery mode

Reply
otravez January 29, 2015 - 2:35 am

i shall now proceed to bookmark your page

Reply
Daniel February 26, 2015 - 11:33 am

Very Helpful. Thanks.

Reply
Anon May 27, 2015 - 5:12 am

How do we safely delete group created by user1, assuming that a group ‘user1’ created for user ‘user1’.

Reply
Akeeb Feroz-Viper September 22, 2015 - 11:27 pm

just getting an error at the first command ”uname: extra operand ‘–a’
Try ‘uname –help’ for more information.”

Reply
Ali April 21, 2016 - 3:32 pm

hello sir
I got an error . when i updated my kali linux to kali linux rolling , i had an account in kali linux with name “ali” and unfortunately it had been deleted but now when i tried to log in into kali linux rolling the CLI shows an error with user “ali” services not started and all the extensions has been stopped . so kindly tell me what can i do ..
i also tired by deleting the home dir of user ali but not worked .

Reply
prisoner676 July 6, 2016 - 1:12 am

to change from normal to root user type in sudo -i
then a window will pop up asking for pass
then type the user password
you are ready to go
if it doesnt work try switching to genome in the logout page

Reply
lopez August 9, 2016 - 8:07 am

Please find need help, after entering user name I try to type my new password is does not do anything, I don’t know what I am doing wrong here please help?

Reply
Pete October 17, 2016 - 5:22 pm

Not working in the ‘new’ rolling version of Kali 2.0 (after distupgrade)

For some reason it stays ‘root’

Tried it over and over what you wrote, but it won’t work.

Am I doing something wrong?

Ok, Kali 2.0 is on a fast USB stick here, works fine so far.

But I can’t make another user, passwd, sudo …

Greets,

Pete

Reply
blackMORE Ops October 18, 2016 - 8:32 am

Hello Pete,
Are you using non-persistent USB installation? This works on pretty much any Debian flavored distro. What is the error you are getting?
You can try this …

useradd -m mytestuser -G sudo -s /bin/bash
passwd mytestuser
Enter new UNIX password: somepassword1234
Retype new UNIX password: somepassword1234
su bmo

This should create and then switch to mytestuser account.
-BMO

Reply
Pete August 8, 2017 - 4:11 am

Hello -BMO

Tnx for your reply.

I’ve made one with persistence.

These are the changes I’ve made in the daemon.conf

daemon]

Enabling automatic login
AutomaticLoginEnable = true
AutomaticLogin= user1

Enabling timed login
TimedLoginEnable=true
TimedLogin= user1
TimedLoginDelay= 10

Reserving more VTs for test consoles (default is 7)
FirstVT=9

[security]
AllowRoot=true

[xdmcp]

[chooser]

[debug]
More verbose logs
Additionally lets the X server dump core if it crashes
Enable=true

==
User1 I have made like you from BMO wrote.

At the moment It’s working.

I can easily change root and user1, the window pops up now.

Maybe it’s not the right way but I’m a n00b you know.

Greetings Pete and tnx.

Reply
Pete October 19, 2016 - 7:45 am

Hellow there,

First I have to thank you for the fast reply.

I tried it out but it doesn’t work.

I’ve set up the USB 3.0 stick this way.

Downloaded a Kali 2.0 installed it on the bootable stick with ‘Pendrivelinux’

After installing Kali on the stick I’ve set up it as Persistence (Mini Partition Tool) to move/resise the usb stick.

You can shrink the partition size with the Mini partition Tool. I thought you needed that when making changes to the OS??? (space?)

create as: Primary … File system: Ext 4 … partition label: persistence

Done that I had to set up ‘persitence’

fdisk -l (L)
(do remember partition you have created on: fat32,NTFS, exFAT, Ext4)

mkdir -p /mnt/UUI
mount /dev/sdb2 /mnt/UUI
echo “/ union” > /mnt/UUI/persistence.conf
umount /dev/sdb2 && reboot

Worked fine after reboot, dit the apt-get clean/update/upgrade/dist-upgrade

Build in some things as TOR, LibreOffice, VLC-player, Hexchat, Angry IP scanner searched the net for those things. :s

Then I wanted to make another user and that didn’t work.

Have I messed up the OS?

If I do what you wrote the only thing it does is that in the ‘All settings window -Users the name (you gave: ‘mytestuser’) i gave the new user is in it but I can’t make changes on it and ne user won’t run. As I click the name of the new user in Users it must be possible to make some more settings but I didn’t do it)

As you see, I’m not an IT but I do loved the Kali 2,0 distro. There are many Linux distros but I think they ar not that good.

I want to give it another try … dunno what went wrong???

Thank u again for your reply.

Greets,

Pete

p.s. sorry for the msitypo’s

Reply
Pete November 4, 2016 - 5:12 am

Surfing and searching all over the net for some ‘goodies’ I noticed this:

http://null-byte.wonderhowto.com/how-to/install-kali-live-usb-drive-with-persistence-optional-0162253

I’ve searched it all myself but its a very very good text from the ‘NullByters’

I think while I was installing it that way, I’ve forgot something and that was the ‘sudo’ command.

But anyway, it’s running like a charm.

I do believe Kali (Debian) is the best Linux Distro there ever was.

Greets to ya all folks, keep up the good work,

Pete

Reply
knox wave November 15, 2016 - 2:13 am

THx . very use full information

Reply
Chris January 25, 2017 - 3:13 pm

I am using kali 2016.2 e17 version and I set up a standard user but when trying to login I get a enlightenment crash and all modules shutdown error right after language,keyboard,profile picks. Any ideas.
I deleted user through root login and setup again same thing.

Reply
Chris January 25, 2017 - 3:14 pm

I am using kali 2016.2 e17 version and I set up a standard user but when trying to login I get a enlightenment crash and all modules shutdown error right after language,keyboard,profile picks. Any ideas.
I deleted user through root login and setup again same thing.
I am also using this on Virtualbox

Reply
Lucas March 23, 2017 - 1:06 am

It’s so helpful my friend. Thank you very much.

The details of your posts are the bests, I can learn a lot of things with it

Best Regards

Reply
Pete August 8, 2017 - 3:49 am

Hello,

I have changed the last kali software it’s daemon.conf an at the moment everything is working like a charm.

The window where I can change root and user1 is back!!

Greets.

Reply
Pete August 14, 2017 - 12:49 am

Hello BMO fans.

I made a mistake while installing Kali 2.0 64bit!!! on a USB 3.0 stick. Used an ‘old’ PC. (I’ve tried to install the 64bit with pendrive and that didn’t work on my ‘old’ pc.

Most of you ppl use ‘Pendrive Linux’ to make the installation.

I think, for the latest versions of Kali OS software Pendrive is not that good so I tried an other one called ‘Rufus.’

Latest new mobo’s are UEFI and in Rufus you can set Bios or Uefi & Bios or Uefi I thought.

Installation is not that hard to do with Rufus and it didn’t made a problem.

Rufus stops installing and downloads some files you need to make a clean installation of Kali.

After installation make a persistence with ‘Mini Partition Tool’

persistence
primary
Ext4

If you give the Kali OS full space, there is no more room for the downloads/updates/upgrades so do make use persistence.

Boot your Kali. As you see you are Root.

Then you can make an User1 if you want to. How to do that is perfectly shown how to do that on the start of this page. (Tnx BMO)

After you’ve done all the work (grin) log out and a ‘problem’ showed up, you can’t login as User1 because the window where to set User1’s name and passw didn’t show up.

As I wrote a little bit higher up on this page ‘problem is something in the ‘daemon.conf’ file.

Take ‘Terminal’ and type: Leafpad /etc/gdm3/daemon.conf (if you use of ‘gdm3’) and change the daemo.conf in:

[daemon]

Enabling automatic login
AutomaticLoginEnable = true
AutomaticLogin= user1

Enabling timed login
TimedLoginEnable=true
TimedLogin= user1
TimedLoginDelay= 10

Reserving more VTs for test consoles (default is 7)
FirstVT=9

[security]
AllowRoot=true

[xdmcp]

[chooser]

[debug]
More verbose logs
Additionally lets the X server dump core if it crashes
Enable=true

Reboot and you’ll see the window where you can change to User1 is Alive again.

I don’t know if I am doing this right because I am not an IT and I don’t know lot’s about Linux but anyway for me it works and the Latest Kali version 64Bit is running very fast on that USB3.0 stick.

Greets to everybody, Pete

Keep up the good work BMO!!

p.s. maybe I am doing it wrong but it works for me.

Reply
mrnobody January 26, 2018 - 6:40 am

Install graphical tools then use the command line, anyway. Brilliant.

Reply
faro LED al por mayor March 13, 2018 - 5:28 pm

Hi there, You’ve done an excellent job. I’ll definitely digg it and personally suggest to my friends. I am confident they’ll be benefited from this web site.

Reply
Extrusiones de aluminio de ventana March 22, 2018 - 2:03 pm

F*ckin?remarkable things here. I am very glad to see your post. Thanks a lot and i am looking forward to contact you. Will you kindly drop me a e-mail?

Reply
Chine Raccords hydrauliques April 14, 2018 - 5:16 pm

Great web site. A lot of helpful info here. I sending it to some pals ans also sharing in delicious. And of course, thanks in your sweat!

Reply
Vedanth April 15, 2019 - 9:00 pm

When I do chsh – s /bin/bash user1
It asks me for password.I tried my root password and my user1 password but it gives me an error saying …..

chsh: PAM: Aunthentication failure

Please Help Me Out

Reply
EG December 5, 2019 - 5:57 am

wouldn’t you also add the new user to the sudoers list?

Reply

Leave your solution or comment to help others.

This site uses Akismet to reduce spam. Learn how your comment data is processed.