Originally posted by: PCTC2
Originally posted by: theflyingpig
Thanks, I've created a separate account. Now, is there anyway to keep that new account from showing up on the logon screen? I know in Windows there is an option to just have a "username/password" dialog, is there an option for that on the mac?
you have to do a bit of terminal work but you can hide users from the login window and it will show the list and then an "other" selection, where you can type in stuff.
Open Directory Utility and enable root user and set the password.
Log out
Log into root
open Terminal
type "id <username>"
note the UniqueID (UID)
type "dscl ."
type "read /Users/<username>"
type "change /Users/<username> UniqueID <oldUIDvalue> 499
type "quit"
type "chown -R 499:20 /Users/<username>
type "defaults write /Library/Preferences/com.apple.loginwindow Hide500Users -bool YES"
logout
Note: if you have SSH (remote login) enabled, you must open terminal, modify "/etc/sshd_config" so that the line "#PermitRootLogin yes" is changed to "PermitRootLogin no" to disable root over ssh.