Does anyone know of a program so that I could keep track of how often other people are on, like is there a log that keeps track of this in unix?
I'm looking for somone taht tells me when somone logs on and when somone logs off ,any ideas? <img src="confused.gif" border="0">
Comments
w -> tells you who is currently logged in.
last -> tells you the last logins from the wtmp file
ac [user] -> tells you how much time (total) a user has been on the system.
/var/log/wtmp is the log file that contains all login information. It is not in ascii.
I have never used any tools to monitor the system to say when someone logs in, but I'm sure you can do it somehow.