The UID must be unique, as would be expected. When a new user is
added, the next available UID is usually used, but
there's no restriction on having gaps or using order
with UIDs. However, if the Unix box is part of a network, it is
essential that the person's UID be unique across the
network. The same constraints apply to the group ID: in most cases a
new group ID equal to the UID is assigned the person. Addition to
other groups occurs after the person is added to the system.
# useradd -c "Test User" -d /home/local/testuser -G 501, 502 -p changepassword
-s /bin/bash -e 2002-05-24
In this example, -c is used to add a username
comment (the user's full name),
-G specifies what groups to add the person to,
-p adds a password, -s sets the
person's default shell, and -e
specifies that the username expires on a certain date. The person is
added to their own group -- 503 in this example. To override this
I would use the -g command-line
parameter -- the -G only adds the person to
additional groups, it doesn't override default
behavior.