# Create Group And User * make sure group or user to be created does not exist yet ``` id ``` * create system group ``` sudo groupadd -r ``` * create system user with specific login shell and group ``` sudo useradd -r -s /bin/false -g ``` * print real and group and user id ``` id ``` * extract group and user details from OS configuration for verification ``` cat /etc/group|grep cat /etc/passwd|grep ```