Last login date


 
Thread Tools Search this Thread
Top Forums UNIX for Dummies Questions & Answers Last login date
# 1  
Old 09-20-2013
Question Last login date

i need to know, for all users in /etc/passwords, when their last login was including the year.

is this kept as one record per person anywhere? I believe that WTMPX, keeps transactions of login and logout, but i just need the last time including people who never have logged in.

i know that fwtmp can convert wtmpx data to text, but it is still transactions, not status.

thanks
# 2  
Old 09-20-2013
Code:
for user in  `awk -F: '{printf("%s ", $1)}'  /etc/passwd`
do 
  last -1 $user
done

That is -[character one] not ell
# 3  
Old 09-21-2013
The date info will not contain the requested year, at least for the last six months, and wtmp is rotated frequently, esp. on busy systems, so users who logged in some time ago may be lost (unless you create rchives of wtmp).

Last edited by RudiC; 09-21-2013 at 05:54 PM..
 
Login or Register to Ask a Question

Previous Thread | Next Thread

9 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

To learn last login date

Hello, # last| grep -v "root" | head -1 evam pts/4 10.16.241.217 Fri Nov 20 10:48 gone - no logout I can see last date without year. But I want to learn year of the last login. # last| grep -v "root" | head -1 | awk '{print$4" "$5" "$6" "$7 }' Fri Nov 20 10:48 How can... (5 Replies)
Discussion started by: getrue
5 Replies

2. UNIX for Dummies Questions & Answers

How to do a login time and date list of users never logged on?

Hello, I'm trying to do a list of user that never connected to a couple of servers. I want to do a diff between the servers lists, and print out only the users that never has logged on each server. Here my first step : SERVER01: # finger `egrep -v -e "^\s*#" /etc/passwd | awk '{ print $1 }' |... (4 Replies)
Discussion started by: gogol_bordello
4 Replies

3. UNIX for Dummies Questions & Answers

script to write the last login date and time

I want to make a script to write me in a file the date(format 16-12-2008) and hour(format 15:12:21) of the last login in the system; what can i add to the <last> command in order to be suitable? (4 Replies)
Discussion started by: kalimat
4 Replies

4. Web Development

APACHE: Tie in Web Page login with server login

Hello, I have created a web page on a server using apache and added .htaccess and .htpasswd in the folder for authentification. I was wondering if there was anyway to tie-in the login for this page with the login used to logon to the server. i.e. the same login info. is used for both,... (2 Replies)
Discussion started by: WhotheWhat
2 Replies

5. UNIX for Dummies Questions & Answers

last login date and time for all users

I need a command that will list all the users and their last login date & time. I was trying the last command and the who command, but can't get exactly what I need. I just need the output to be user name and last login date . Thanks for your help! (3 Replies)
Discussion started by: igidttam
3 Replies

6. UNIX for Dummies Questions & Answers

Last user login date

I have been asked to create a report of when users last logged into an AIX box. Upon login, this information appears to be available but I have not located it yet. Any help? Thanks! (2 Replies)
Discussion started by: JTeter
2 Replies

7. Shell Programming and Scripting

Collecting & Displaying of Last User ID and Date of Last Login

Hi, I needed to write a script to "Collect and Display the Last User ID and Date of Last Login". The requirement is: When a workstation stops reporting it could be for many reasons. If we know the last person who logged in before the workstation came down, then we can contact the last... (1 Reply)
Discussion started by: amittal
1 Replies

8. UNIX for Dummies Questions & Answers

Collecting & Displaying of Last User ID and Date of Last Login

Hi, I needed to write a script to "Collect and Display the Last User ID and Date of Last Login". The requirement is: When a workstation stops reporting it could be for many reasons. If we know the last person who logged in before the workstation came down, then we can contact the last... (1 Reply)
Discussion started by: amittal
1 Replies

9. UNIX for Dummies Questions & Answers

Script to display last login date/time?

I was wondering if anyone had a script that would display the last time a user logged into a particular machine. I know about the "last" command, but it gives too much info.... I just wanted to know the last time a user used his/her id. ANy help would be greatly appreciated. Ryan (3 Replies)
Discussion started by: ryaneverett5
3 Replies
Login or Register to Ask a Question