User Management in Linux (Red Hat/CentOS)
User Management in Linux How to know the user details chirag@chirag-MacBookAir:~$ getent passwd username How to know the id of user chirag@chirag-MacBookAir:~$ id username How to change the UID chirag@chirag-MacBookAir:~$ usermod -u 2000 username How to create the user with the specific UID chirag@chirag-MacBookAir:~$ useradd -u 3000 username How to change the password chirag@chirag-MacBookAir:~$ passwd […]
User Management in Linux (Red Hat/CentOS) Read More »