En el siguiente lab realizaremos ejercicios con el comando groupadd
Consideraciones:
Al ejecutar cualquier acción con el comando groupadd, los archivos se encuentran involucrados:
/etc/group : Group account information.
/etc/gshadow : Secure group account information.
/etc/login.defs : Shadow password suite configuration.
/etc/login.defs
Los parámetros modificables son:
# Min/max values for automatic gid selection in groupadd
#
GID_MIN 1000
GID_MAX 60000
# System accounts
SYS_GID_MIN 201
SYS_GID_MAX 999
Crear grupo con identificador distinto a la plantilla.
Para esta operación se utiliza opción -K
[root@localhost ~]# /sbin/groupadd lala01 -K GID_MIN=3000 -K GID_MAX=4000
[root@localhost ~]# cat /etc/login.defs | grep GID_
GID_MIN 1000
GID_MAX 60000
SYS_GID_MIN 201
SYS_GID_MAX 999
[root@localhost ~]# cat /etc/group | grep lala
lala01:x:3000:
[root@localhost ~]#
Crear grupo con identificador personalizado.
[root@localhost ~]# /sbin/groupadd -g 10501 userlala01
[root@localhost ~]#
[root@localhost ~]# cat /etc/group | grep userlala
userlala01:x:10501:
[root@localhost ~]#
Listar los grupos al que pertenece el usuario
a través de los comandos "id" y "groups" es posible obtener la informcación de los grupos a los cuales pertenece un determinado usuario.[root@localhost ~]# groups user101
user101 : user101
[root@localhost ~]# groups user102
user102 : user102 user101
[root@localhost ~]# id user101
uid=1005(user101) gid=1007(user101) groups=1007(user101)
[root@localhost ~]# id user102
uid=1005(user101) gid=1007(user101) groups=1007(user101)
[root@localhost ~]#
Fuentes
http://www.computerhope.com/unix/groupadd.htm
http://www.tecmint.com/manage-users-and-groups-in-linux/
No hay comentarios:
Publicar un comentario