How does one process we can start an executable file? How to
get the PID process, which we started?
Answers were Sorted based on User's Feedback
Answer / vimal
ps -ef|grep username
gives the process started by the user.
| Is This Answer Correct ? | 6 Yes | 1 No |
Answer / akash
We can use
ps -u yourusername
this will list all the processes that are started by you.
| Is This Answer Correct ? | 3 Yes | 3 No |
Answer / hari
to start a process
chkconfig nttpd on
to restart daemon
chkconfig nttpd restart
find the pid of daemon
pidof -s processname
pidof -s nttpd
pidof -s cupsd
pidof -s httpd
Please check it
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / sangeetha
We can start a new process from an existing process by
calling the function system("new process &"). The & sign
indicates the new process will run in background. Then
after this we can use the "ps" command to get the PID of
the new process.
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / hari
ps -aux | grep 'process-name'
Pls check it is a guess
Hari
| Is This Answer Correct ? | 0 Yes | 1 No |
What command is used to replace the existing string with some other?
How do you find path of a directory? Give its syntax.
What does grep v do?
Differentiate cat command from more command.
The command grep first second third /usr/you/myfile a) prints lines containing the words first, second or third from the file /usr/you/myfile b) searches for lines containing the pattern first in the files second, third, and /usr/you/myfile and prints them c) searches the files /usr/you/myfiel and third for lines containing the words first or second and prints them d) replaces the word first with the word second in the files third and /usr/you/myfile e) None of the above
How do you grep a case insensitive?
How to display no of records in oracle using unix command?
Where can I get the free download of Unix by Yeswant Kanetkar?
Differentiate cmp command from diff command.
Briefly, how do you install Oracle software on UNIX.
Which command will you use to change the permissions on file?
How do I use grep to search for a file?