2

What is the way to add new users in Debian 10 Buster? I tried adduser but this appears to be missing.

> adduser myuser

bash: adduser: command not found

Thanks.

Jorge
  • 43
  • 1
  • 5
  • 4
    Hi, specifying the full path might help `/usr/sbin/adduser` or running with a root environment – IronMan Aug 18 '20 at 23:07
  • Hi @IronMan, thanks, it work. I add in the file ~/.bashrc the next line: export PATH="$PATH:/sbin:/usr/sbin:usr/local/sbin" – Jorge Aug 18 '20 at 23:23

1 Answers1

0

Looks like you basic commands ain't installed on your OS.

sudo apt install adduser

should fix the thing

pavlov
  • 23
  • 5