Managing Users on Linux: A Practical Guide
Linux user management controls who can sign in, which files they can access, and which administrative actions they can perform. A few standard commands cover most day-to-day account management tasks. 1. Create a User The low-level useradd command creates a new account. A practical invocation is: sudo useradd -m -s /bin/bash -c "John Doe" john The options mean: