> For the complete documentation index, see [llms.txt](https://cheatsheet.mrw0l05zyn.cl/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://cheatsheet.mrw0l05zyn.cl/linux-unix/usuarios.md).

# Usuarios

Crear usuarios.

```sh
useradd <user>
useradd <user> -d /home/<directory>
useradd <user> -g <principal-group>
```

Agregar usuario a grupos.

```sh
usermod -G <group> <user>
```
