I don't know that the user names are supposed to dissappear from these files. How are you doing the kill for the user?
kill ${PID} or kill -15 ${PID}?
If so, this may or may not kill the user out of the system, I have had very little success with killing users out using the above examples. I have always had to use the following:
kill -9 ${PID}
The names stay in utmp and wtmp, but they do not show up in who. I would say that if the name is still showing up in who, then the user is still logged in and you need to force the kill with "-9".
or kill -15.
But this is probably a ghost user, which rebooting will eliminate. Ed Fair
unixstuff@juno.com
Any advice I give is my best judgement based on my interpretation of the facts you supply. Help increase my knowledge by providing some feedback, good or bad, on any advice I have given.
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.