Is this even possible anymore? I've seen tutorials which use niutil (not available on my Mac) and dscl.

My output from dscl is the following though, kind of odd:

neutron:~ username$ sudo dscl / -create /Users/deadline
Data source (/) is not valid.
link|improve this question

67% accept rate
feedback

1 Answer

up vote 0 down vote accepted

/ isn't a valid node name (think network host names); for the local host's default store you can use ., or use localhost to specify the store.

$ sudo dscl . -create /Users/deadline                       # the common way
$ sudo dscl localhost -create /Local/Default/Users/deadline # same thing
link|improve this answer
Good call. I thought I'd tried local host at one point, but apparently I hadn't. – RandomInsano Mar 3 '11 at 23:08
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.