1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-07-05 06:55:24 +02:00
tldr/pages/osx/chpass.md
Managor 5305776d45
*: capitalize the first letter after "Note:" (#16226)
Co-authored-by: Machiavelli <145562237+MachiavelliII@users.noreply.github.com>
2025-05-04 05:15:17 +03:00

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}}