Linux - General This Linux forum is for general Linux questions and discussion.
If it is Linux Related and doesn't seem to fit in any other forum then this is the place. |
Notices |
Welcome to LinuxQuestions.org, a friendly and active Linux Community.
You are currently viewing LQ as a guest. By joining our community you will have the ability to post topics, receive our newsletter, use the advanced search, subscribe to threads and access many other special features. Registration is quick, simple and absolutely free. Join our community today!
Note that registered members see fewer ads, and ContentLink is completely disabled once you log in.
Are you new to LinuxQuestions.org? Visit the following links:
Site Howto |
Site FAQ |
Sitemap |
Register Now
If you have any problems with the registration process or your account login, please contact us. If you need to reset your password, click here.
Having a problem logging in? Please visit this page to clear all LQ-related cookies.
Get a virtual cloud desktop with the Linux distro that you want in less than five minutes with Shells! With over 10 pre-installed distros to choose from, the worry-free installation life is here! Whether you are a digital nomad or just looking for flexibility, Shells can put your Linux machine on the device that you want to use.
Exclusive for LQ members, get up to 45% off per month. Click here for more info.
|
 |
01-25-2003, 10:29 PM
|
#1
|
Senior Member
Registered: Apr 2002
Location: Arbovale, WV
Distribution: Slackware
Posts: 1,761
Rep:
|
finding a PID and killing it
I wrote a script that starts the connection and my iptables script. I just type <script name> on the command line and the iptables script starts that the dial-up connections.
Here is my problem, I want to write a script that will kill the connection. Right now I do a ps -x, find the PID and do a kill PID number, on the command line.
How do I do this? I can do a ps -x | grep ppp0 > /tmp/modpid and print the pid number and name and such to a file. I just done know the commands to extract the PID number from the file and issue a kill to it. Any help is greatly appericiated. Thanks
|
|
|
01-25-2003, 10:36 PM
|
#2
|
Senior Member
Registered: Sep 2002
Location: Nashville, TN
Posts: 1,552
Rep:
|
Does your system support pkill? Or you could do something similar to the following for the long way around:
ps -ef | grep procname | awk '{print $2}' | xargs kill
|
|
|
01-25-2003, 10:48 PM
|
#3
|
Senior Member
Registered: Jan 2003
Location: Portland, OR USA
Distribution: Slackware, SLAX, Gentoo, RH/Fedora
Posts: 1,024
Rep:
|
Look in the (/etc/) init.d or rc.d directory for the stop scripts your machine runs to shut itself down; You can hopefully read through some of these and use the same methods your distribution does as an example of how you should do it.
|
|
|
01-25-2003, 11:14 PM
|
#4
|
Senior Member
Registered: Apr 2002
Location: Arbovale, WV
Distribution: Slackware
Posts: 1,761
Original Poster
Rep:
|
Thanks stickman, the ps -ef | grep/ ..... thing worked.
|
|
|
All times are GMT -5. The time now is 03:35 PM.
|
LinuxQuestions.org is looking for people interested in writing
Editorials, Articles, Reviews, and more. If you'd like to contribute
content, let us know.
|
Latest Threads
LQ News
|
|