how to know service name of an application? [closed]
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 4 years ago.
Improve this questionI installed yammer application in my centos(linux) machine.It is starting at the time of starting the machine.How can i know its service name and how can i delete from startup....?
ps ax will display processes currently running by all users while
ps aux will display processes currently running by the current user.
If you combine them with grep hopefully you will find what you are looking for. For example:
ps ax | grep yammer
精彩评论