New user is not taking system default Group ID. System default group id for new user is 100. Whenever i create a new user, GID as well as UID increments by 1. I can understand UID but GID should be 100 for every new user. What is the possible reason? I am using Amazon linux AMI on EC2.
# adduser -D
GROUP=100
HOME=/home
INACTIVE=-1
EXPIRE=
SHELL=/bin/bash
SKEL=/etc/skel
CREATE_MAIL_SPOOL=yes
# useradd -m testuser
# useradd -m testuser2
# cat /etc/passwd
testuser:x:501:503::/home/testuser:/bin/bash
testuser2:x:502:504::/home/testuser2:/bin/bash
adduserinstead when actually adding the user to see if that has any effect. – Garrett Dec 17 '11 at 7:19adduseris a Perl script and not a symlink touseradd, check/etc/adduser.confand ensure thatFIRST_GIDis set appropriately. AMI may useGROUPas an alias of that, but the Ubuntu box I'm looking at now has no such definition. – Garrett Dec 17 '11 at 7:40