LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Linux - Desktop (https://www.linuxquestions.org/questions/linux-desktop-74/)
-   -   Find all proecss (https://www.linuxquestions.org/questions/linux-desktop-74/find-all-proecss-777388/)

asliyanage 12-22-2009 01:25 AM

Find all proecss
 
I installed uTorrent in Ubuntu 9.0 .
But when i am going to run it they said
there is a Already running uTorrent but it is not working propewrly
Please close all uTorrent process and try again.

i used this link

http://news.softpedia.com/news/uTorr...ps-49037.shtml

i done first part of 2.
anyway can you tell me how to fine all uTorrent process?
i try using " ps aux | less " command.
But it doesn't give the name of process?

vishesh 12-22-2009 01:34 AM

Use
root# netstat -ntulp

thnks

asliyanage 12-22-2009 01:39 AM

no ,root# netstat -ntulp shows all port and what are using them.I don't need all port numbers.
I need to know all thr Running Process in this computer?

EricTRA 12-22-2009 01:41 AM

Does
Code:

ps -ef
give you what you want? You can trim down the list piping it to grep
Code:

ps -ef | grep torrent
Kind regards,

Eric

vishesh 12-22-2009 01:43 AM

putting , -p in netstat show you name of program that using that ip:port, since utorrent is a network application , it will show you right result

thnks

asliyanage 12-24-2009 07:12 AM

I need to how to find the utorrent Process?
when i am going to install utorrent is says there is already running utorrent proecss?
how to identify utorent orocess and how to disable?

EricTRA 12-24-2009 07:52 AM

Hi,

Have you tried what I posted earlier? Open a terminal and execute:
Code:

ps -ef | grep torrent
and post the results here.

Kind regards,

Eric

asliyanage 12-24-2009 07:58 AM

this is the result.

asliyanage@2006cs119:~$ ps -ef | grep torrent
1000 3418 1 0 18:29 ? 00:00:00 Z:\home\asliyanage\Downloads\utorrent.exe
1000 4822 4804 0 19:27 pts/0 00:00:00 grep torrent

EricTRA 12-24-2009 08:00 AM

OK, now type (if logged on as user):
Code:

sudo kill 3418
to end the utorrent program. If logged on as root just don't type sudo.

Kind regards,

Eric

asliyanage 12-24-2009 08:13 AM

can you tell me how to get torrent using synaptic manager?

EricTRA 12-24-2009 08:17 AM

Hi,

I don't have access to an Ubuntu machine at the moment since I'm at the office. But you can check out this site. It shows various ways of installing software in Ubuntu. I'm sure you'll find what you need on that site, it's explained with screenshots.

Kind regards,

Eric


All times are GMT -5. The time now is 08:59 AM.