1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-23 17:02:08 +02:00
tldr/pages.it/linux/adduser.md
Francesco Franchina 28c4d26221
pages.it/*: update path placeholders and "directory" translations (#9031)
- Replace "al" -> "del", "alla" -> "della", etc. in command paths
- Replace all instances of "cartella" with "directory"
- Update contributing-guides/translation-templates/common-arguments.md to
  reflect these changes

Co-authored-by: marchersimon <50295997+marchersimon@users.noreply.github.com>
Co-authored-by: Marco Bonelli <marco@mebeim.net>
Co-authored-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com>
2022-10-20 15:26:58 +02:00

28 lines
832 B
Markdown

# adduser
> Servizio per aggiungere utenti.
> Maggiori informazioni: <https://manpages.debian.org/latest/adduser/adduser.html>.
- Crea un nuovo utente con una directory home predefinita e richiede all'utente di impostare una password:
`adduser {{nome_utente}}`
- Crea un utente senza una directory home:
`adduser --no-create-home {{nome_utente}}`
- Crea un utente con una directory home nel percorso specificato:
`adduser --home {{percorso/della/home}} {{nome_utente}}`
- Crea un nuovo utente con l'interprete di comandi(shell) specificato come shell di accesso:
`adduser --shell {{percorso/della/shell}} {{nome_utente}}`
- Crea un nuovo utente appartenente al gruppo specificato:
`adduser --ingroup {{gruppo}} {{nome_utente}}`
- Aggiunge un utente esistente al gruppo specificato:
`adduser {{nome_utente}} {{gruppo}}`