Lastlog and launched process


 
Thread Tools Search this Thread
Top Forums UNIX for Dummies Questions & Answers Lastlog and launched process
# 1  
Old 10-27-2008
Lastlog and launched process

Hello there,

I "discovered" an interesting command lastlog, but I couldn't find, until nowSmilie, if it's possible to get a list of the launched process by users and root during a certain of time...

...any idea would be really appreciated!!!

Thanks in advance.

Giordano Bruno
# 2  
Old 10-27-2008
Maybe do a "ps aux" and parse it bye user and start time.
# 3  
Old 10-27-2008
Should it work even for terminated process?!?
# 4  
Old 10-27-2008
With ps you get an actual process status list, no history. I don't know any native tool that does that.
I guess you have to write something your own.
You can check for your OS, whatever it is, what kind of switches are there for ps or maybe there are tools available that can do such stuff.
 
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

[Solved] Process dies when launched in system startup script

Good morning! I'm trying to add Maven to the system boot by the moment without success. Testing the operation of the script I realize that the process isn't persistent when the program is launched with the start option. ---- #Startup Script ---- #! /bin/sh # chkconfig: 345 99 1 #... (5 Replies)
Discussion started by: carpannav
5 Replies

2. Shell Programming and Scripting

To cleanup the root entries in lastlog

Hi Folks, Is there a way to cleanup the root entries in the Linux server from the lastlog. For AIX and SUN server, this has been done Via the fwtmp command. (1 Reply)
Discussion started by: gsiva
1 Replies

3. UNIX for Dummies Questions & Answers

Lastlog output help

what does the filed +0100 +0000 actually indicates abcd pts/30 pdd10264 Fri Sep 2 11:06:51 +0100 2011 robo pts/5 pdd10280 Mon Feb 13 16:32:45 +0000 2012 (4 Replies)
Discussion started by: robo
4 Replies

4. UNIX for Dummies Questions & Answers

Different ways in which applications are Launched.

How does X windows system launch a program? Does X give init a command (fork) or does x give BASH a command? Can/does X interact with init directly or does everything go through BASH? :wall: Thanks in advance! (4 Replies)
Discussion started by: theKbStockpiler
4 Replies

5. AIX

lastlog

There is also "host_last_login" information in a file /etc/security/lastlog . If I login to an appl (on AIX) via 'rexec' from my pc, I can see there pc's name or its IP: tty_last_login = rexec host_last_login = 10.50.38.74 I already collect login time/date/user into my own log... (1 Reply)
Discussion started by: frajer
1 Replies

6. AIX

clear/delete log from 'last' or 'lastlog' command

Dear Friends , From 'last' or 'lastlog' command , I can get the last login informations of the users . now as a system admin , If I want to delete the log information from this 'last' 'lastog' command , then is it possible to do ? plz inform ... ... (1 Reply)
Discussion started by: shipon_97
1 Replies

7. Shell Programming and Scripting

Find shell process pid launched throug `at`.

Hi. I was testing some staff and wrote simple script, which only writes date to log every 15 seconds. Like that #1.sh while true;do echo `date` >> 1.log sleep 15 done And than i ran this process with `at -s -f 1.sh now`. And now it is running and i don't know how to catch it. I tryed... (1 Reply)
Discussion started by: kukuruku
1 Replies

8. UNIX for Advanced & Expert Users

is there a way to find out the tty from which the process is launched

Hi all, There is an application which can be launched once on our box and there are several suspected users telnet into the system with the same login ID. Is there a way that i can find out from which tty the application is launched? If so, i can get the user name from the "finger"... (1 Reply)
Discussion started by: sleepy_11
1 Replies

9. UNIX for Dummies Questions & Answers

Process launched by user who logs out, continue running ?

Lets say a user starts a process (either a shell script or a Perl script) and before that process finishes, he logs out (either intentionaly or network problems or ...), does the process continu running ? Default shell is Korn. This is because at my job (being trained), there are tasks to run... (2 Replies)
Discussion started by: Browser_ice
2 Replies

10. AIX

lastlog has duplicates

Hello, we are running AIX 4.3.3, has anyone experienced an issue with the lastlog file where there are duplicate entries. ie. # mkpasswd -c #mkpasswd -c /etc/security/lastlog ---> /etc/security/lastlog.idx 3004-779 Duplicate key found. "userazs" 3004-778 Index operation failed.... (1 Reply)
Discussion started by: chlawren
1 Replies
Login or Register to Ask a Question