1

Possible Duplicate:
How do we found running programs that are not visible?

I have installed 64 bits Bitdefender on Ubuntu 12.04 LTS 64 bit.

After updating the virusdefinitions I clicked on the 'hide' button.

Now I am wondering if Bitdefender is still running.

So how can I check if bitdefender is running?

Hans
  • 121

4 Answers4

2

open a terminal and type gnome-system-monitor

it should be listed in the "Processes" pane.

Halta
  • 669
1

Assuming that bitdefender was installed as a service you get the desired information with

sudo service bitdefender status

If that comes back with an error, you can play it lazy and just type sudo service bit tab to autocomplete without having to type the full name. (if there exist more services with names starting with bit you press tab twice to get a list of possibilities.

guntbert
  • 13,134
0

You can use ps command to list running processes eg:

ps -A

You can then use grep to filter the results for what you are looking for:

ps -A | grep defender
fabricator4
  • 8,375
0

You can look at the exe link in /proc/[0-9]*, thusly:
sudo ls -l /proc/[0-9]*/exe

waltinator
  • 36,399