"As we have explained, the "unknown" user (UID 99) is one required by the OS. You cannot remove it, any more than you can remove the "root" or "nobody" user if you want your Mac to work correctly."
Not true, I axed mine since 10.5.1. Never had a "unknown" problem since. "I know what I know if
you no what I mean." Leopard runs happily under the "Tiger" format.
Simple, axe UID 99 with dscl or workgroup manager, Leave GID 99, change your user GID to 501,
change next user GID to 502, etc, etc. Runs like a charm. 😉
If you are using Terminal.app command line:
dscl . -list /Users UniqueID
You should see "Guests 99" listed in the lineup
to remove:
sudo dscl . -delete /Users/Guests UniqueID 99
using work group manager, change to group name (icon), go to group GID 99 (unknown),
select "members", add root ( group 0 ).
add new group name ID to match User name ID
for example:
if you have user john UID 501, then create new group john GID 501
repeat for each user.
with each user name UID be sure enroll each user in each group they belong in.
Quite easily done with work group manager.
you can check your results with the id command:
Betsy7:~ john$ id john
uid=501(john) gid=501(john) groups=501(john),101(com.apple.sharepoint.group.1),
98(
lpadmin),12(everyone),60(sandbox),503(jill),80(admin),20(staff)
Kj