If you're already up and running the numeric user ids, you can smoothly transition to the new form of ids--define duplicates for the actual user ids.In a former life we used to just present the student ids with an "s", thus:
s1234567
See if you can do this. It may save you a lot of pain later.
cat /etc/passwd > fred cat /etc/passwd | sed 's/^/s/' >> fred then remove the new s-prefixed accounts that aren't student accounts... mv fred /etc/passwd
Alan -- Alan Peery peery io com