1.

Solve : different user accounts in ubuntu?

Answer»

please SUGGEST me how to create DIFFERENT USER accounts in UBUNTU 12.04https://www.digitalocean.com/community/articles/how-to-add-and-delete-users-on-ubuntu-12-04-and-centos-6

Easy processWithout a HOME directory

sudo useradd myuser

With home directory

sudo useradd -m myuser

Then set the password

sudo passwd myuser

Then set the shell

sudo usermod -s /bin/bash myuser

Thanks to all.



Discussion

No Comment Found