You can check who recently logged in with the last command. You can use grep to see when a particular user logged in.
# last |grep username
If you only want to know the "last logged in date", use the lastlog command. You can also extract specific users with grep.
# lastlog |grep username
Recommended Posts