Terminating myself


 
Thread Tools Search this Thread
Top Forums UNIX for Dummies Questions & Answers Terminating myself
# 1  
Old 04-11-2004
Terminating myself

just like what the subject said
but the ip is different
example
if now my IP is 192.168.0.50 and my name is seed
if i wanna terminate 192.168.0.55 with the same nick of mine, seed

can i do that ?? and what is the command ??
# 2  
Old 04-11-2004
your post really dosnt make much sense. im going to have to assume that you mean terminating the proccess of a remote login session. ie, someone is logged into machine A from machine B, you want to kick them off of machine A. well it depends on how they are logged in. usually you can just kill their shell.

to do this you want to know the PID of the proccess you want to kill. assume the user is seed, so type the command "ps aux"
look for output like:

seed 2230 0.0 0.1 2512 656 pts/1 S 14:51 0:00 bash


aside from all the other information there, the main thing you are looking for is the user who is running the process, thats the first column, the PID which is the second column, then the last column which tells you what the process is.

so as root, or the user seed issue the command:

kill -9 2230

then that process will be killed.
# 3  
Old 04-13-2004
Re: Terminating myself

Quote:
Originally posted by SeeD
just like what the subject said
but the ip is different
example
if now my IP is 192.168.0.50 and my name is seed
if i wanna terminate 192.168.0.55 with the same nick of mine, seed

can i do that ?? and what is the command ??
You need to use the kill command to terminate a process.

You can use lsof to determine the process id for network connections and TCP/IP sessions.

lsof is an advanced Unix command that is very powerful. You can find more by searching Google or these forums.
 
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Perl Threads Terminating Abnormally.

I've used threads before, but not with Perl. I tried looking up these errors and using 'join' instead of 'detach' with no luck. Here is the code I am currently using: #!/usr/bin/perl -w use warnings; use threads; use threads::shared; $Linux='Linux'; $Greek='Greek'; my... (3 Replies)
Discussion started by: Azrael
3 Replies

2. Shell Programming and Scripting

Cd error terminating loop

Hi All, I am trying to make a small shell script.In this it will got directory as per variable & run the find command on that directory.There are 120 + directories & not sure all of them are mounted.So the issue is if the directory doesent exists my loops gets terminated. so is there any was... (3 Replies)
Discussion started by: ajaincv
3 Replies

3. IP Networking

E1 Link Terminating on Solaris Box

Hi, I have multiple boxes connected using some RAD Routers and these RAD routers are not working as per our expectations. The Data transfer is negligible and speed of connectivity. I need to check if I can directly terminate an E1 cable connection to my Solaris Box excluding a Router... (1 Reply)
Discussion started by: busyboy
1 Replies

4. UNIX for Dummies Questions & Answers

Grep or Awk from a non-terminating program

Hey all, Does anybody know how to grep or awk from a non-terminating program. For example the program top which displays the process cpu usage, idle %,...etc. I was wondering if I can grep or awk certain fields from it.:confused: The other thing I was wondering about is how to insert a CTRL-C... (2 Replies)
Discussion started by: ibrahimelkadi
2 Replies

5. Shell Programming and Scripting

How can i terminating expect script without terminating SSH connection.

Hi all , i know i ask a lot of question but these are really hard to solve and important question. I send two scripts: expect.sh: #!/usr/local/bin/expect spawn ssh root@172.30.64.163 expect "login:" send "root\n" expect "password:" send "root\n^M" interact and son.sh: ... (2 Replies)
Discussion started by: fozay
2 Replies

6. Shell Programming and Scripting

nohup terminating

hi all, i m running few batch process through shell script using nohup command but when session get terminated(due to network, reboot of desktop and closing session directly) all processes terminating abnormally and core file is generating. application batch process is connecting oracle... (4 Replies)
Discussion started by: arvindng
4 Replies

7. Shell Programming and Scripting

script unexpectedly terminating

I now that this isnt the greatest code around. Im a network guy by trade not a programer .. but needed something to compare config files ... Anyway ... intermittently, the program terminates. Ive been looking at the code for a week trying to figure it out and Im stumped. Can anyone provide... (0 Replies)
Discussion started by: popeye
0 Replies

8. HP-UX

Terminating Processes by Name

Hi! Just want to know if there is one command that I can use to kill processes by its name. Thanks. (1 Reply)
Discussion started by: love833
1 Replies

9. UNIX for Dummies Questions & Answers

Terminating child script with terminating the parent script

Hi I was working on a shell script with randomly shows a page of text from a randomly selected topic .As soon as the page is displayed it callers a timer script which keeps on running indefinitely until the timer script is killed by the user. This is where I have the problem,if I press... (2 Replies)
Discussion started by: mervin2006
2 Replies

10. Shell Programming and Scripting

terminating script with CTRL+D

Hi, I'm trying to make a script that reads the console input and terminates with CTRL+D. It's absolutely basic but I don't know how to "read" the CTRL+D. I've tried a bunch of things like EOT=^D while //with & without quotations do read input echo $input done while while ] ... (12 Replies)
Discussion started by: sanchopansa
12 Replies
Login or Register to Ask a Question