Advanced Linux Shell Scripting for DevOps Engineers with User management
#devops
To add a user to the Linux system:
useradd devops
setting user password:
passwd devops
If we want to add a user by making a directory use the -m flag
sudo useradd devops -m
-d dirSet the user’s home directory to be dir.-s shellSet the ...
madhuripdevops.hashnode.dev2 min read