|
What is ASR? Is it a trip wire service? If you want to start or stop a service, then it depends on the Distro you are using. On most, such as Fedora or Mandriva, you can use "sudo /sbin/service <service-name> stop". On SuSE, there probably is an rc<Service-Name> script to do the same thing, such as "sudo /sbin/rcnetwork stop eth0". It is also possible to stop a service by calling the init.d script directly:
sudo /etc/init.d/<service> stop
Sometimes a daemon (service) start-stop script in init.d/ will have "d" added to the name. Such as smbd or winbind.
On many systems, you can use "chkconfig" to enable or disable a service or to determine for which runlevels the service should run in.
----
Looking further on the second Google search page, I noticed that ASR might mean Automatic Speech Recognition. Look for a README file in /usr/share/doc/packages/<the asr program name>/.
Last edited by jschiwal; 11-08-2006 at 04:38 PM.
|