Sponsored Content
Full Discussion: kill processes
Operating Systems Solaris kill processes Post 302252407 by DukeNuke2 on Wednesday 29th of October 2008 10:58:43 AM
Old 10-29-2008
which process? all for one user? if so, you only need to kill the login process for this user (if local login). or you can use a script to search for all user processes and kill them...
 

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

kill all processes

i have a very short file that has in it a line for a find command. now, when i run this script and I kill the script later, using the ps -ef | grep scriptname. i noticed kill -9 kills the script itself but does not kill the internal find command that it gave birth to. say theres a file... (0 Replies)
Discussion started by: Terrible
0 Replies

2. UNIX for Dummies Questions & Answers

Kill several processes at a time

Hello, ps -C a* returns the list of the process I need to kill. but ps -C a* -o pid | kill does not work and I can't get the syntax right. Thanks for any help (4 Replies)
Discussion started by: JCR
4 Replies

3. Shell Programming and Scripting

Unix Kill processes

Hi guys, I am new to Unix shell scripting. Can anyone of you tell me how to kill all the processes at a time for a particular user?(No listing the process ID of each process in the kill -9 command). Thanks in Advance, -Hary (5 Replies)
Discussion started by: tadi18
5 Replies

4. Solaris

how do I kill defunct processes?

mqm 17700 16815 0 0:00 <defunct> kill -9 does not work, even as root (10 Replies)
Discussion started by: csaunders
10 Replies

5. HP-UX

Read/kill processes

Hi, I read a set of processes with: ps -eaf|grep oracleTRLV The result is: oracle 23253 1 0 15:14:11 ? 0:00 oracleTRLV (LOCAL=NO) oracle 23301 1 0 15:15:07 ? 0:00 oracleTRLV (LOCAL=NO) oracle 22914 1 0 15:11:19 ? 0:00 oracleTRLV (LOCAL=NO) How to I kill the "oracleTRLV" ones? Is there... (17 Replies)
Discussion started by: NicoMan
17 Replies

6. UNIX for Dummies Questions & Answers

Need help to kill parent and all of its sub processes

Hi, I am writing korn shell script. My requirement is, i have to kill the parent process and all of its child processes. Can some one please help me on this? Thanks in advance for your help.. (1 Reply)
Discussion started by: Sheethal
1 Replies

7. Shell Programming and Scripting

Kill processes

for i in 'ps -f | grep textedit' do kill $i done I wrote this but it wont work. I am trying to find processes and kill them. Any help would be welcome. (1 Reply)
Discussion started by: hawaiifiver
1 Replies

8. Shell Programming and Scripting

kill all user processes

Hi there, i've been searching all over and i thought i had understood the way i should go to kill all the processes related to a user. But i'm getting more confused then i was. By lunch time i have to make a database backup, and for that all the users shoul logout. The problem is that many users... (4 Replies)
Discussion started by: vascobrito
4 Replies

9. Shell Programming and Scripting

kill multiple processes by name

Want to kill multiple processes by name. for the example below, I want to kill all 'proxy-stagerd_copy' processes. I tried this but didn't work: >> ps -ef|grep proxy_copy root 991 986 0 14:45:34 ? 0:04 proxy-stagerd root 1003 991 0 14:45:49 ? 0:01... (2 Replies)
Discussion started by: catalinawinemxr
2 Replies

10. UNIX for Advanced & Expert Users

Kill a list of processes

I am trying to kill a list of processes. I have found these two ways to list a group of process id's on a single line. How would I go about killing all of these processes all on one line? $ ps aux | grep 6243 | grep "a.out" | awk '{printf "%s ",$2}'ps aux | grep 6243 | grep "a.out" | awk... (8 Replies)
Discussion started by: cokedude
8 Replies
fuser(1M)																 fuser(1M)

NAME
fuser - list processes using a file or file structure SYNOPSIS
file ... file ...] ... DESCRIPTION
The command lists the process IDs of processes that have each specified file open. For block special devices, all processes using any file on that device are listed. The process ID may be followed by a letter, identifying how the file is being used, as follows: file is current directory of the process. file is the root directory of the process, as set up by the command (see chroot(1M)). The process has file open. The process has file memory mapped. file is the text file of the process. The process IDs associated with each file are printed to standard output as a single line separated by spaces and terminated with a single newline. All other output -- the file name, the letter, and the user name -- is written to standard error. Options has the following options: Display the use of a mount point and any file beneath that mount point. Each file must be a file system mount point. Display the use of the named file only, not the files beneath it if it is a mounted file system. This is the default. Display the login user name in parentheses following each process ID. Send the signal to each process using each file. You must have appropriate privileges to kill processes that you do not own. You can respecify options between groups of files. The new set of options replaces the old set. A dash by itself cancels all options cur- rently in force. Operands has the following operand: file One of the following values: o With the option, the name of a file. o With the option, the name of a mounted file system or special file. o With the option, the name of a file system mount point. NETWORKING FEATURES
You can use with NFS file systems or files. If the file name is in the format used in to identify an NFS file system, treats the NFS file system as a block special device and identifies any process using that file system. If contact with an NFS file system is lost, fails, since contact is required to obtain the file system identification. Once the NFS file system is recontacted, stale file handles from the previous contact can be identified, provided that the NFS file system has the same file system identification. EXAMPLES
Terminate all processes that are preventing disk drive 1 from being unmounted, listing the process ID and login name of each process being killed. List process IDs and login names of processes that have the password file open. Combine both the above examples into a single command line. If the device is mounted on directory list the process IDs and login names of processes using the device. Alternately, if is the mount point for an NFS file system, list process IDs and login names of processes using that NFS file system. If is an NFS file system, list all processes using any file on that file system. If it is not an NFS file system, treat it as a regular file. SEE ALSO
ps(1), mount(1M), kill(2), signal(2). STANDARDS CONFORMANCE
fuser(1M)
All times are GMT -4. The time now is 12:18 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy