Sponsored Content
Full Discussion: Unix Process
Top Forums UNIX for Dummies Questions & Answers Unix Process Post 302087122 by reborg on Tuesday 29th of August 2006 07:34:55 PM
Old 08-29-2006
If you have process accounting turned on you will be able to see when an arbitrary command ran, otherwise, no.
 

10 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

Unix Process Failed

Im having this problem ever since im Using Unix. Please help.Im using Linux Red Hat 7.0. 2.2.6. My Problem is. Whenever i close my unix before the system goes to Halt mode and stoping all md device, this Process shows me as fail. : Saving Mixer settings modprobe: modprobe: can't locate module... (1 Reply)
Discussion started by: killerserv
1 Replies

2. Programming

Unix Process

I have successfully opened /dev/table/proc file and read processes pids and its details from it, but I am unable to have programatic knowledge of how to access process CMD or its corresponding name. Kindly do guide me out on the said request for which I will be very thankfull. (3 Replies)
Discussion started by: S.P.Prasad
3 Replies

3. UNIX for Dummies Questions & Answers

UNIX Process Suspend

Hi, I have this doubt.... When some program is running and if we press CTRL+Z...it is suspended... what should we do to continue its execution I know that KILL can be used to completely terminate the process....but is there any way to continue... Thanks (3 Replies)
Discussion started by: proton
3 Replies

4. Programming

How to get process name from process id in all Unix platforms?

Hi, i need to find the process name using the process id in C. This has to be done in HP, AIX, Solaris & Linux?? How can this be done? Is there any common solution to all platforms? On linux i have heard that /proc/<pid>/cmdline can be used. Is there a structure available to read this? ... (3 Replies)
Discussion started by: molu
3 Replies

5. Shell Programming and Scripting

Help required on process in unix

What are some ways to tell if a given file is presently being used by a process? How can you tell what sort of access the process has to the file (read from, written to, filehandle held open, etc)? Can more than one process access the file at the same time? (2 Replies)
Discussion started by: choco4202002
2 Replies

6. Shell Programming and Scripting

UniX Process not getting logout.

Hi, We have UNIX menu. when we exit the menu the processes are not getting log out. please suggest me how to log out the process after exit from the UNIX Menu. Regards, laknar. (3 Replies)
Discussion started by: laknar
3 Replies

7. Shell Programming and Scripting

Shell Script to Kill Process(number of process) Unix/Solaris

Hi Experts, we do have a shell script for Unix Solaris, which will kill all the process manullay, it used to work in my previous env, but now it is throwing this error.. could some one please help me to resolve it This is how we execute the script (and this is the requirement) ... (2 Replies)
Discussion started by: jonnyvic
2 Replies

8. Red Hat

Unix Process

Hi, I'm running weblogic 11g on Linux platform. My requirement is to have weblogic instances running and it is controlled by Nodemanager. In the sense, when ever the weblogic instance goes down, Node manager should start it. The set up requires to have weblogic running as user X, and... (2 Replies)
Discussion started by: aprasad
2 Replies

9. UNIX for Dummies Questions & Answers

Unix Process

Hi , i scheduled jobs in crontab with dependency. some child process id killed without manual intervention or script . please add you thoughts how process id killed automatically. (1 Reply)
Discussion started by: challamsomu
1 Replies

10. UNIX for Dummies Questions & Answers

unix process

I have to create a parent process that receives n arguments, arg1, arg2 ... argn. The parent creates n son processes. Each one of these will read a text file argi and will print the pair of lines from the file in reversed order. Can anyone help me with this problem, please? (3 Replies)
Discussion started by: oana06
3 Replies
ACCT(2) 						     Linux Programmer's Manual							   ACCT(2)

NAME
acct - switch process accounting on or off SYNOPSIS
#include <unistd.h> int acct(const char *filename); DESCRIPTION
When called with the name of an existing file as argument, accounting is turned on, records for each terminating process are appended to filename as it terminates. An argument of NULL causes accounting to be turned off. RETURN VALUE
On success, zero is returned. On error, -1 is returned, and errno is set appropriately. ERRORS
EACCES Write permission is denied for the specified file. EACCES The argument filename is not a regular file. EFAULT filename points outside your accessible address space. EIO Error writing to the file filename. EISDIR filename is a directory. ELOOP Too many symbolic links were encountered in resolving filename. ENAMETOOLONG filename was too long. ENOENT The specified filename does not exist. ENOMEM Out of memory. ENOSYS BSD process accounting has not been enabled when the operating system kernel was compiled. The kernel configuration parameter con- trolling this feature is CONFIG_BSD_PROCESS_ACCT. ENOTDIR A component used as a directory in filename is not in fact a directory. EPERM The calling process has no permission to enable process accounting. EROFS filename refers to a file on a read-only file system. EUSERS There are no more free file structures or we ran out of memory. CONFORMING TO
SVr4 (but not POSIX). SVr4 documents an EBUSY error condition, but no EISDIR or ENOSYS. Also AIX and HPUX document EBUSY (attempt is made to enable accounting when it is already enabled), as does Solaris (attempt is made to enable accounting using the same file that is cur- rently being used). NOTES
No accounting is produced for programs running when a crash occurs. In particular, nonterminating processes are never accounted for. Linux 2.1.126 1998-11-04 ACCT(2)
All times are GMT -4. The time now is 08:44 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy