Find the answer to your Linux question:
Results 1 to 7 of 7
Hi gurus As per my previous thread you know I am a nebbbiiieeee, I need to know how to list all services running on my machine, what command can I ...
  1. #1
    Just Joined!
    Join Date
    May 2007
    Posts
    6

    Running Services

    Hi gurus

    As per my previous thread you know I am a nebbbiiieeee,

    I need to know how to list all services running on my machine, what command can I use.

    I know this is time for you guys so if you can help me with a link where I can start learning linux , it also would be nice.


    Thanks a bunch

  2. #2
    Super Moderator devils casper's Avatar
    Join Date
    Jun 2006
    Location
    Chandigarh, India
    Posts
    24,316
    Code:
    top
    OR install htop. its much better than top.

    I know this is time for you guys so if you can help me with a link where I can start learning linux , it also would be nice.
    check LinuxCommand.org: Learn the Linux command line. Write shell scripts. for basic commands stuff.
    It is amazing what you can accomplish if you do not care who gets the credit.
    New Users: Read This First

  3. #3
    Just Joined!
    Join Date
    May 2007
    Posts
    6
    Thanks Guru

    I can see all taks running on the box but how about services running on the box

    Thanks a bunch

  4. #4
    Just Joined!
    Join Date
    May 2007
    Posts
    6
    Hi gurus

    Can Anyone help me on this

    Thanks a bunch

  5. #5
    Super Moderator devils casper's Avatar
    Join Date
    Jun 2006
    Location
    Chandigarh, India
    Posts
    24,316
    hmmm... what is the difference between Tasks and Services? if you want to check services that starts at boot up, look into init scripts. which distro do you have?
    It is amazing what you can accomplish if you do not care who gets the credit.
    New Users: Read This First

  6. #6
    Blackfooted Penguin daark.child's Avatar
    Join Date
    Apr 2006
    Location
    West Yorks
    Posts
    4,344
    Quote Originally Posted by naguaramipana View Post
    Hi gurus

    Can Anyone help me on this

    Thanks a bunch
    What Linux distribution are you using? It helps if you can put it in your profile if you want accurate answers.

    On Redhat based distros (and Mandriva), you can check services by doing
    Code:
    #chkconfig --list
    or
    Code:
    #service --status-all
    The second command is better because it lets you know whether the service is actually running or not. The first one just lists all services and whether they are enabled or disabled.

  7. #7
    Super Moderator devils casper's Avatar
    Join Date
    Jun 2006
    Location
    Chandigarh, India
    Posts
    24,316
    both commands are not available in Ubuntu Feisty,

    its
    Code:
    serviceconfig
    It is amazing what you can accomplish if you do not care who gets the credit.
    New Users: Read This First

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
...