Process list

Asked by penqwin

How to configure it? For example, i dont want to use Bluetoth service. How to disable it?

Question information

Language:
English Edit question
Status:
Solved
For:
Ubuntu Edit question
Assignee:
No assignee Edit question
Solved by:
Nicolas Kassis
Solved:
Last query:
Last reply:
Revision history for this message
Nicolas Kassis (nicolas-kassis) said :
#1

You can look at the service settings in the following menu: System->Administration->Services. To disable the service or enable it you only have to check or uncheck the box next to the specific service.

Revision history for this message
penqwin (penqwin) said :
#2

I think there isn't all proceses...

Revision history for this message
Nicolas Kassis (nicolas-kassis) said :
#3

Well you can also look at the scripts in "/etc/init.d/". To disable bluetooth you can do the following in a shell:

% sudo /etc/init.d/<name of script to disable> stop
% sudo mv /etc/init.d/<name of script to disable>{,.DISABLED}

This will stop the daemon and change its name to <name of script to disable>.DISABLED . To renable it you can simply remove the ".DISABLED" .

Nic

Revision history for this message
Nicolas Kassis (nicolas-kassis) said :
#4

I forgot to mention than a good way to see what is running on your computer is to use the following command :

% ps aux | less This will list everything on the computer
% top This will show what is running but ordered by how much ressources it uses

Revision history for this message
penqwin (penqwin) said :
#5

closed