1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-22 13:42:07 +02:00
tldr/pages/osx/chpass.md
K.B.Dharun Krishna 1de9190d63
pages.*: standardize capitalization in note term (#12195)
Signed-off-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com>
2024-02-05 12:34:49 +05:30

832 B

chpass

Add or change user database information, including login shell and password. Note: it's not possible to change the user's password on Open Directory systems, use passwd instead. See also: passwd. More information: https://man.freebsd.org/cgi/man.cgi?chpass.

  • Add or change user database information for the current user interactively:

su -c chpass

  • Set a specific login [s]hell for the current user:

chpass -s {{path/to/shell}}

  • Set a login [s]hell for a specific user:

chpass -s {{path/to/shell}} {{username}}

  • Edit the user record on the directory node at the given [l]ocation:

chpass -l {{location}} -s {{path/to/shell}} {{username}}

  • Use the given [u]sername when authenticating to the directory node containing the user:

chpass -u {{authname}} -s {{path/to/shell}} {{username}}