Quote: |
Originally Posted by MikeTbob Yeah probably so.
You can go to System > Administration > Services, and use google to decide if you need the services that are listed and shut them down.
I think if you want to remove something like sendmail, un-installing the sendmail program would remove that service from start-up. | Uninstalling the service is quite unnecessary. There are always ways to stop them and keep them from starting up on boot. I admit that in Ubuntu I haven't found an easy way to do this since the Services GUI is quite useless, it will not go into Admin mode (for me). In Fedora, there is chkconfig which is quite easy to use and does not require uninstalling the programs. In truth , uninstalling software manually under linux is not a good idea unless you are absolutely sure of what you are doing.
What chkconfig really does is get rid of the script in the corresponding folder (depending on the run level you are at) which is usually /etc/rc5.d. When you shut down, then the scripts in that folder will be shut down. The ones that will startup up begin with a capital S, the ones to shut down with a capital K.
Don't mess too much with this stuff if you don't know what you are doing.
I have to add though, that bluetooth, etc is NOT part of the kernel, they are daemons that you CAN prevent from starting up and indeed you should if you do not need them.
For bluetooth specifically, you can delete this script from /etc/rc5.d:
S25bluez-utils
it is only a softlink to another script in /etc/init.d/bluez-utils. Make sure you do not delete the ones in /etc/init.d, just the links in the /etc/rc5.d. That way you can always get them back by creating another soft link.
Now, I'm new to ubuntu (but I checked all this that I am saying before posting and indeed it is the same as in Fedora) and would like to know if there is a gui or command line tool to manage services. Having to delete the links manually is quite a chore.
Cheers |