Is there a usermod equivalent in terminal for OS X 10.6.1

33,875

Solution 1

dscl is the usual way to modify any stuff from Directory Services (whether local or remote) from the command line. See the dscl manpage for all the info (or the local one if you are not running 10.6). Google turns up many examples of how to use it (including many from macosxhints.com).

Solution 2

Adding a user:

dscl . append /Groups/admin GroupMembership usershortname

Removing a user: (from the group not the system)

dscl . delete /Groups/admin GroupMembership usershortname

Reading the membership of the admin group:

dscl . read /Groups/admin GroupMembership

Solution 3

To add an example, this is how you can modify someones homedirectory:

dscl . -create /Users/postgres NFSHomeDirectory /opt/local/var/db/postgresql84

You can see also properties for an object using the read command:

dscl . -read /Users/postgres

Solution 4

You're correct, these commands are not included in OSX. Although there is a port of adduser for Mac, so you can add a user and change their groups from the command line. Command info here.

Share:
33,875

Related videos on Youtube

skjindal93
Author by

skjindal93

Updated on September 17, 2022

Comments

  • skjindal93
    skjindal93 over 1 year

    Can anyone tell me how to modify a user and add them to a group in terminal on SL (10.6.1)?

    It seems that usermod is not used by Mac.

  • skjindal93
    skjindal93 over 14 years
    I am looking more so for the modifying a user and adding them to a specific group
  • John T
    John T over 14 years
    this tool can do both.